@dockerforge/cli 0.1.3 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -91,7 +91,7 @@ any SARIF viewer. Full detail for each rule is in the [rules reference](https://
91
91
  | Code | Meaning |
92
92
  | --- | --- |
93
93
  | `0` | Success. |
94
- | `1` | An error. The JSON error carries a typed `code`, for example `PATH_NOT_FOUND`. |
94
+ | `1` | An error. The human error line includes a typed code when one is available, for example `PATH_NOT_FOUND`. |
95
95
 
96
96
  ## Use in CI
97
97
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dockerforge/cli",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "DockerForge CLI: generate production-grade Dockerfiles, .dockerignore, and Compose from a local project, and lint Dockerfiles (human/JSON/SARIF). Offline.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Docker Forge",
@@ -17,6 +17,9 @@
17
17
  "dockerforge": "src/index.js"
18
18
  },
19
19
  "main": "src/index.js",
20
+ "exports": {
21
+ ".": "./src/index.js"
22
+ },
20
23
  "files": [
21
24
  "src",
22
25
  "LICENSE",
@@ -41,7 +44,7 @@
41
44
  "sarif"
42
45
  ],
43
46
  "dependencies": {
44
- "@dockerforge/core": "^0.1.2",
45
- "commander": "^12.1.0"
47
+ "@dockerforge/core": "0.2.0",
48
+ "commander": "^13.1.0"
46
49
  }
47
50
  }