Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/karoltheguy/PodletJS)
[![NPM Deployment](https://github.com/karoltheguy/podletjs/actions/workflows/npm-publish.yml/badge.svg?branch=main)](https://github.com/karoltheguy/podletjs/actions/workflows/npm-publish.yml)
[![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0)

![Lines](./badges_output/lines.svg) ![Statements](./badges_output/statements.svg) ![Branches](./badges_output/branches.svg) ![Functions](./badges_output/functions.svg)
# PodletJS

JavaScript port of [Podlet](https://github.com/containers/podlet)
Expand Down
11 changes: 1 addition & 10 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PodletJS Roadmap

## Current Status: ✅ Feature Complete (v0.1.0)
## Current Status: ✅ Feature Complete (v1.0.0)

PodletJS successfully implements the core functionality of the original Podlet (Rust) with:
- **Docker run command parsing** (40+ flags supported)
Expand Down Expand Up @@ -181,12 +181,3 @@ npx podlet-js compose docker-compose.yml --output ./quadlets/
## Contributing

Send pull a requests if you're interested in implementing any of these features.

---

## Version Planning

- **v0.1.x**: Bug fixes and minor improvements
- **v0.2.0**: CLI interface + Pod generation
- **v0.3.0**: Build context handling + Version compatibility
- **v1.0.0**: Production hardening + Extended features
12 changes: 12 additions & 0 deletions badges_output/branches.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions badges_output/branches_chart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions badges_output/functions.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions badges_output/functions_chart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions badges_output/lines.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions badges_output/lines_chart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions badges_output/statements.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions badges_output/statements_chart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,20 @@ export default {
'<rootDir>/test/unit/**/*.test.js',
'<rootDir>/test/e2e/**/*.test.js'
],
transform: {},
transform: {
'^.+\\.js$': 'babel-jest'
},
collectCoverageFrom: [
'src/**/*.js'
],
collectCoverage: true,
coverageDirectory: '<rootDir>/coverage',
coverageReporters: [
"json-summary",
"text",
"lcov",
"clover"
],
testTimeout: 30000,
verbose: true
};
11 changes: 7 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "podletjs",
"version": "1.0.0",
"version": "1.0.1",
"description": "JavaScript port of Podlet - Generate Podman Quadlet files from Docker run commands and compose files",
"main": "src/index.js",
"type": "module",
Expand Down