@optiprune/cli 1.2.13 → 1.2.16
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.
- package/config.md +36 -14
- package/dist/cli.js +46 -18
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/config.md
CHANGED
|
@@ -8,7 +8,7 @@ OptiPrune uses a structured configuration file to define entry points, rule beha
|
|
|
8
8
|
|
|
9
9
|
Create an `optiprune.json` or `optiprune.jsonc` file in the root directory of your project:
|
|
10
10
|
|
|
11
|
-
```
|
|
11
|
+
```
|
|
12
12
|
{
|
|
13
13
|
"$schema": "https://raw.githubusercontent.com/optiprune/core/refs/heads/main/schema.json",
|
|
14
14
|
"rootDir": "src",
|
|
@@ -22,12 +22,14 @@ Create an `optiprune.json` or `optiprune.jsonc` file in the root directory of yo
|
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
```
|
|
25
|
+
|
|
25
26
|
---
|
|
26
27
|
|
|
27
28
|
## How OptiPrune Loads Configuration
|
|
29
|
+
|
|
28
30
|
When OptiPrune initializes, it checks the workspace root in the following order of precedence:
|
|
29
31
|
|
|
30
|
-
optiprune.json (Highest Priority)
|
|
32
|
+
optiprune.json (Highest Priority )
|
|
31
33
|
|
|
32
34
|
optiprune.jsonc (Allows comments //, /* */, and trailing commas)
|
|
33
35
|
|
|
@@ -36,8 +38,8 @@ package.json (Falls back to reading an "optiprune" key)
|
|
|
36
38
|
---
|
|
37
39
|
|
|
38
40
|
## Configuration Reference
|
|
39
|
-
|
|
40
|
-
rootDir (string, default: ".")
|
|
41
|
+
|
|
42
|
+
**1. File & Workspace Discovery**rootDir (string, default: ".")
|
|
41
43
|
|
|
42
44
|
Specifies the base directory for source files relative to the project workspace root.
|
|
43
45
|
|
|
@@ -53,8 +55,7 @@ ignore (string[], default: [])
|
|
|
53
55
|
|
|
54
56
|
Glob patterns or directory paths to skip entirely during analysis (e.g., test fixtures, output directories).
|
|
55
57
|
|
|
56
|
-
**2. Export & Contract Safeguards**
|
|
57
|
-
externalContracts (string[], default: [])
|
|
58
|
+
**2. Export & Contract Safeguards**externalContracts (string[], default: [])
|
|
58
59
|
|
|
59
60
|
List of public API symbol or interface names. Marks these exports as globally used across all execution layers, preventing OptiPrune from flagging them as dead code when building public libraries or plugins.
|
|
60
61
|
|
|
@@ -66,8 +67,7 @@ includeConventionalEntries (boolean, default: true)
|
|
|
66
67
|
|
|
67
68
|
Automatically treats framework conventions (e.g., index.ts, main.ts, App.tsx) as entry points without needing manual listing in entry.
|
|
68
69
|
|
|
69
|
-
**3. CLI & Execution Controls**
|
|
70
|
-
failOn ("high" | "medium" | "low" | "info" | "none", default: "high")
|
|
70
|
+
**3. CLI & Execution Controls**failOn ("high" | "medium" | "low" | "info" | "none", default: "high")
|
|
71
71
|
|
|
72
72
|
Determines the minimum issue severity level required to exit the process with a non-zero exit code in CI/CD pipelines.
|
|
73
73
|
|
|
@@ -79,8 +79,27 @@ json (boolean, default: false)
|
|
|
79
79
|
|
|
80
80
|
Formats output directly as raw JSON for external tool ingestion.
|
|
81
81
|
|
|
82
|
-
**4.
|
|
83
|
-
|
|
82
|
+
**4. Automated Fixes (fix)**
|
|
83
|
+
|
|
84
|
+
Configures the automatic removal of dead code. Can be a boolean or an object for granular control.
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
{
|
|
88
|
+
"fix": {
|
|
89
|
+
"confidence": "medium+",
|
|
90
|
+
"rules": ["exports", "files", "dependencies"],
|
|
91
|
+
"dryRun": false
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
- **confidence**: Minimum confidence to apply a fix (`high`, `medium+`, `low+`, `all`).
|
|
97
|
+
|
|
98
|
+
- **rules**: Specific rules or categories (`exports`, `files`, `dependencies`) to fix.
|
|
99
|
+
|
|
100
|
+
- **dryRun**: If true, logs what would be fixed without modifying files.
|
|
101
|
+
|
|
102
|
+
**5. Rule Overrides (rules)**Fine-tune or disable specific inspection rules:
|
|
84
103
|
|
|
85
104
|
```json
|
|
86
105
|
"rules": {
|
|
@@ -89,22 +108,25 @@ Fine-tune or disable specific inspection rules:
|
|
|
89
108
|
```
|
|
90
109
|
|
|
91
110
|
- `"error"`: Causes finding to trigger build errors or exit failures.
|
|
111
|
+
|
|
92
112
|
- `"warning"`: Emits warnings without halting execution (unless configured by failOn).
|
|
113
|
+
|
|
93
114
|
- `"off"`: Disables rule checking entirely.
|
|
94
115
|
|
|
95
|
-
**
|
|
96
|
-
Configure isolated runtimes, SMT solvers, and symbolic execution passes:
|
|
116
|
+
**6. Engine & Solver Tuning (layers)**Configure isolated runtimes, SMT solvers, and symbolic execution passes:
|
|
97
117
|
|
|
98
118
|
| Option | Type | Default | Purpose |
|
|
99
|
-
|
|
|
100
|
-
| smtTimeoutMs | number | 10000 | SMT solver execution cap (in milliseconds) per proof path
|
|
119
|
+
| --- | --- | --- | --- |
|
|
120
|
+
| smtTimeoutMs | number | 10000 | SMT solver execution cap (in milliseconds) per proof path. |
|
|
101
121
|
| isolateMemoryLimitMb | number | 128 | Memory ceiling (in MB) allocated to V8 worker isolates. |
|
|
102
122
|
| enableConcolicProof | boolean | false | Enables concolic analysis to prove dead execution paths. |
|
|
103
123
|
| skip3 | boolean | false | Bypasses Analysis Layer 3. |
|
|
104
124
|
| skip4 | boolean | false | Bypasses Analysis Layer 4. |
|
|
105
125
|
|
|
106
126
|
---
|
|
127
|
+
|
|
107
128
|
## Alternative: package.json Configuration
|
|
129
|
+
|
|
108
130
|
If you do not want an additional configuration file in your root folder, add an "optiprune" field inside package.json:
|
|
109
131
|
|
|
110
132
|
```json
|
package/dist/cli.js
CHANGED
|
@@ -47,28 +47,56 @@ program
|
|
|
47
47
|
.option("--skip-4", "Skip Layer 4 (Concolic Execution Proofs)")
|
|
48
48
|
.option("-v, --verbose", "Show verbose output and internal graph state")
|
|
49
49
|
.option("--fix", "Automatically remove unused exports, dependencies, and unreachable files")
|
|
50
|
+
.option("--fix-confidence <level>", "Minimum confidence level to fix (high, medium+, low+, all)", "high")
|
|
51
|
+
.option("--fix-rules <rules...>", "Specific rules to fix (exports, files, dependencies, or specific rule names)")
|
|
52
|
+
.option("--dry-run", "Log what would be fixed without changing files")
|
|
50
53
|
.option("--cache-from <path>", "Path to a JSON file to import cache from before analysis")
|
|
51
54
|
.option("--cache-to <path>", "Path to export the resulting cache to after analysis")
|
|
52
|
-
.action(async (options) => {
|
|
55
|
+
.action(async (options, command) => {
|
|
53
56
|
try {
|
|
54
|
-
|
|
55
|
-
//
|
|
56
|
-
//
|
|
57
|
+
// Commander materializes defaults in `options`. Forwarding those values
|
|
58
|
+
// would make them override optiprune.json/jsonc/package.json settings.
|
|
59
|
+
// Only an option explicitly supplied on the command line wins over config.
|
|
60
|
+
const isCliOverride = (name) => command.getOptionValueSource(name) === "cli";
|
|
61
|
+
// Build FixConfig if --fix or other fix-related flags are used
|
|
62
|
+
let fixOption = undefined;
|
|
63
|
+
if (isCliOverride("fix") || isCliOverride("fixConfidence") || isCliOverride("fixRules") || isCliOverride("dryRun")) {
|
|
64
|
+
// Explicitly check if --fix was provided. If it's boolean true or not provided but other fix flags are,
|
|
65
|
+
// we enable fixing with the granular config.
|
|
66
|
+
const fixEnabled = isCliOverride("fix") ? !!options.fix : true;
|
|
67
|
+
if (fixEnabled) {
|
|
68
|
+
fixOption = {
|
|
69
|
+
confidence: options.fixConfidence,
|
|
70
|
+
rules: options.fixRules,
|
|
71
|
+
dryRun: !!options.dryRun
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
else {
|
|
75
|
+
fixOption = false;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
// The core resolves defaults and file configuration. The CLI deliberately
|
|
79
|
+
// provides only explicit user overrides so the documented precedence is:
|
|
80
|
+
// CLI flag > config file > core default.
|
|
57
81
|
const analyzerOptions = {
|
|
58
|
-
rootDir: rootDir,
|
|
59
|
-
entry: options.entry
|
|
60
|
-
extensions: options.extensions
|
|
61
|
-
ignore: options.ignore
|
|
62
|
-
reportUnusedExports
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
82
|
+
...(isCliOverride("rootDir") && { rootDir: options.rootDir }),
|
|
83
|
+
...(isCliOverride("entry") && { entry: options.entry }),
|
|
84
|
+
...(isCliOverride("extensions") && { extensions: options.extensions }),
|
|
85
|
+
...(isCliOverride("ignore") && { ignore: options.ignore }),
|
|
86
|
+
...(isCliOverride("reportUnusedExports") && {
|
|
87
|
+
reportUnusedExports: options.reportUnusedExports,
|
|
88
|
+
}),
|
|
89
|
+
...(isCliOverride("conventionalEntries") && {
|
|
90
|
+
includeConventionalEntries: options.conventionalEntries,
|
|
91
|
+
}),
|
|
92
|
+
...(isCliOverride("failOn") && { failOn: options.failOn }),
|
|
93
|
+
...(isCliOverride("json") && { json: options.json }),
|
|
94
|
+
...(isCliOverride("skip3") && { skip3: options.skip3 }),
|
|
95
|
+
...(isCliOverride("skip4") && { skip4: options.skip4 }),
|
|
96
|
+
...(isCliOverride("verbose") && { verbose: options.verbose }),
|
|
97
|
+
...(fixOption !== undefined && { fix: fixOption }),
|
|
98
|
+
...(isCliOverride("cacheFrom") && { cacheFrom: options.cacheFrom }),
|
|
99
|
+
...(isCliOverride("cacheTo") && { cacheTo: options.cacheTo }),
|
|
72
100
|
};
|
|
73
101
|
const report = await analyze(analyzerOptions);
|
|
74
102
|
if (options.sarif) {
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA,OAAO,IAAI,MAAM,OAAO,CAAC;AACzB,OAAO,EAAE,MAAM,SAAS,CAAC;AACzB,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,MAAM,OAAO,GAAG,IAAI,OAAO,EAAE,CAAC;AAE9B,2EAA2E;AAC3E,2DAA2D;AAC3D,aAAa;AACb,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAChF,aAAa;AACb,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAIxE,0BAA0B;AAC1B,MAAM,IAAI,GAAI,CAAC,CAAS,EAAE,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC;AAClD,MAAM,MAAM,GAAE,CAAC,CAAS,EAAE,EAAE,CAAC,WAAW,CAAC,SAAS,CAAC;AACnD,MAAM,GAAG,GAAK,CAAC,CAAS,EAAE,EAAE,CAAC,WAAW,CAAC,SAAS,CAAC;AACnD,MAAM,GAAG,GAAK,CAAC,CAAS,EAAE,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC;AAElD,yCAAyC;AACzC,SAAS,cAAc,CAAC,OAAe;IACrC,IAAI,CAAC;QACH,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,2CAA2C,CAAC,CAAC;QAClF,IAAI,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC;YAC7B,MAAM,OAAO,GAAG,EAAE,CAAC,YAAY,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;YACpD,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;YAChC,OAAO,GAAG,CAAC,OAAO,IAAI,OAAO,CAAC;QAChC,CAAC;IACH,CAAC;IAAC,OAAO,CAAC,EAAE,CAAC,CAAA,CAAC;IACd,OAAO,OAAO,CAAC;AACjB,CAAC;
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@optiprune/cli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.16",
|
|
4
4
|
"description": "CLI for resilient static dead-code analyzer for TypeScript and JavaScript workspaces.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"./package.json": "./package.json"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@optiprune/core": "^1.11.
|
|
72
|
+
"@optiprune/core": "^1.11.24",
|
|
73
73
|
"commander": "^15.0.0",
|
|
74
74
|
"pathe": "2.0.3"
|
|
75
75
|
},
|