fallow 2.87.0 → 2.88.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.88.0",
|
|
4
4
|
"description": "Deterministic codebase intelligence for TypeScript and JavaScript. Quality, risk, architecture, dependencies, duplication, and safe cleanup evidence for humans, CI, and agents. Optional runtime intelligence layer (Fallow Runtime) adds production execution evidence. Rust-native, sub-second, 96 framework plugins.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -83,13 +83,13 @@
|
|
|
83
83
|
"@tanstack/intent": "0.0.41"
|
|
84
84
|
},
|
|
85
85
|
"optionalDependencies": {
|
|
86
|
-
"@fallow-cli/darwin-arm64": "2.
|
|
87
|
-
"@fallow-cli/darwin-x64": "2.
|
|
88
|
-
"@fallow-cli/linux-x64-gnu": "2.
|
|
89
|
-
"@fallow-cli/linux-arm64-gnu": "2.
|
|
90
|
-
"@fallow-cli/linux-x64-musl": "2.
|
|
91
|
-
"@fallow-cli/linux-arm64-musl": "2.
|
|
92
|
-
"@fallow-cli/win32-arm64-msvc": "2.
|
|
93
|
-
"@fallow-cli/win32-x64-msvc": "2.
|
|
86
|
+
"@fallow-cli/darwin-arm64": "2.88.0",
|
|
87
|
+
"@fallow-cli/darwin-x64": "2.88.0",
|
|
88
|
+
"@fallow-cli/linux-x64-gnu": "2.88.0",
|
|
89
|
+
"@fallow-cli/linux-arm64-gnu": "2.88.0",
|
|
90
|
+
"@fallow-cli/linux-x64-musl": "2.88.0",
|
|
91
|
+
"@fallow-cli/linux-arm64-musl": "2.88.0",
|
|
92
|
+
"@fallow-cli/win32-arm64-msvc": "2.88.0",
|
|
93
|
+
"@fallow-cli/win32-x64-msvc": "2.88.0"
|
|
94
94
|
}
|
|
95
95
|
}
|
|
@@ -51,6 +51,7 @@ Analyzes the project for unused files, exports, dependencies, types, members, an
|
|
|
51
51
|
| `--workspace` | string | — | Scope to one or more workspaces. Comma-separated values, globs (`apps/*`, `@scope/*`), and `!`-prefixed negation (`!apps/legacy`) supported. Matched against package name AND workspace path relative to repo root. |
|
|
52
52
|
| `--changed-workspaces` | string (git ref) | — | Git-derived monorepo CI scoping: scope to workspaces containing any file changed since `REF` (e.g. `origin/main`). Auto-derives the workspace set from `git diff`. Mutually exclusive with `--workspace`. Missing ref is a hard error (exit 2), not silent full-scope fallback. |
|
|
53
53
|
| `--include-dupes` | bool | `false` | Cross-reference with duplication findings |
|
|
54
|
+
| `--dupes-min-occurrences` | number | `config` | Override the minimum clone occurrences in combined mode (must be >= 2). Falls back to the config value when unset. Mirrors the standalone `dupes --min-occurrences`. |
|
|
54
55
|
| `--file` | path (multiple) | — | Scope output to specific files. Only issues in the specified files are reported. Project-wide dependency issues are suppressed. Warns on non-existent paths. Useful for lint-staged |
|
|
55
56
|
| `--include-entry-exports` | bool | `false` | Report unused exports in entry files (package.json `main`/`exports`, framework pages). Catches typos like `meatdata` vs `metadata`. Global flag, also accepted on combined mode (`fallow --include-entry-exports`) and `fallow audit`. Also configurable as `includeEntryExports: true` in fallow config |
|
|
56
57
|
| `--trace` | `FILE:EXPORT` | — | Trace export usage chain |
|
|
@@ -485,7 +486,7 @@ fallow health --format json --quiet --trend
|
|
|
485
486
|
{
|
|
486
487
|
"kind": "health",
|
|
487
488
|
"schema_version": 7,
|
|
488
|
-
"version": "2.
|
|
489
|
+
"version": "2.88.0",
|
|
489
490
|
"elapsed_ms": 32,
|
|
490
491
|
"summary": {
|
|
491
492
|
"files_analyzed": 482,
|
|
@@ -875,7 +876,7 @@ fallow audit \
|
|
|
875
876
|
{
|
|
876
877
|
"kind": "audit",
|
|
877
878
|
"schema_version": 7,
|
|
878
|
-
"version": "2.
|
|
879
|
+
"version": "2.88.0",
|
|
879
880
|
"command": "audit",
|
|
880
881
|
"verdict": "fail",
|
|
881
882
|
"changed_files_count": 12,
|
|
@@ -948,7 +949,7 @@ fallow flags --format json --quiet --workspace my-package
|
|
|
948
949
|
```json
|
|
949
950
|
{
|
|
950
951
|
"schema_version": 7,
|
|
951
|
-
"version": "2.
|
|
952
|
+
"version": "2.88.0",
|
|
952
953
|
"elapsed_ms": 116,
|
|
953
954
|
"feature_flags": [],
|
|
954
955
|
"total_flags": 0
|
|
@@ -1487,7 +1488,7 @@ The HTTP layer mirrors the bash `gh_api_retry` / `curl_retry` helpers: `FALLOW_A
|
|
|
1487
1488
|
{
|
|
1488
1489
|
"kind": "dead-code",
|
|
1489
1490
|
"schema_version": 7,
|
|
1490
|
-
"version": "2.
|
|
1491
|
+
"version": "2.88.0",
|
|
1491
1492
|
"elapsed_ms": 45,
|
|
1492
1493
|
"total_issues": 12,
|
|
1493
1494
|
"entry_points": {
|
|
@@ -1647,7 +1648,7 @@ When `--baseline` is used in combined output, the JSON includes a `baseline_delt
|
|
|
1647
1648
|
{
|
|
1648
1649
|
"kind": "dupes",
|
|
1649
1650
|
"schema_version": 7,
|
|
1650
|
-
"version": "2.
|
|
1651
|
+
"version": "2.88.0",
|
|
1651
1652
|
"elapsed_ms": 82,
|
|
1652
1653
|
"total_clones": 15,
|
|
1653
1654
|
"total_lines_duplicated": 230,
|
|
@@ -1691,11 +1692,11 @@ When running `fallow` with no subcommand (all analyses), the JSON output combine
|
|
|
1691
1692
|
{
|
|
1692
1693
|
"kind": "combined",
|
|
1693
1694
|
"schema_version": 7,
|
|
1694
|
-
"version": "2.
|
|
1695
|
+
"version": "2.88.0",
|
|
1695
1696
|
"elapsed_ms": 159,
|
|
1696
1697
|
"check": {
|
|
1697
1698
|
"schema_version": 7,
|
|
1698
|
-
"version": "2.
|
|
1699
|
+
"version": "2.88.0",
|
|
1699
1700
|
"elapsed_ms": 45,
|
|
1700
1701
|
"total_issues": 12,
|
|
1701
1702
|
"unused_files": [],
|