fallow 2.100.0 → 2.101.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/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Fallow turns a JS/TS repository into a trusted quality report: health score, cha
|
|
|
12
12
|
|
|
13
13
|
It helps you answer: what changed, what got riskier, what should be reviewed, what should be refactored, and what can be safely removed. No AI inside the analyzer. Fallow produces deterministic findings, typed output contracts, and traceable explanations that downstream tools can trust.
|
|
14
14
|
|
|
15
|
-
Static analysis is free and open source. An optional paid runtime layer (Fallow Runtime) adds production execution evidence. Rust-native, sub-second, 122 framework plugins,
|
|
15
|
+
Static analysis is free and open source. An optional paid runtime layer (Fallow Runtime) adds production execution evidence. Rust-native, sub-second, 122 framework plugins, no Node.js runtime dependency for analysis. fallow's edge is doing more in one pass: dead code, duplication, dependencies, complexity, architecture, and security in a single tool. For head-to-head timings against [knip](https://knip.dev) and [jscpd](https://github.com/kucherenko/jscpd), see the [benchmarks](https://github.com/fallow-rs/fallow/tree/main/benchmarks): fallow is faster than knip on smaller projects, knip is faster on several larger repos, and jscpd's Rust rewrite is faster for raw duplication scanning.
|
|
16
16
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.101.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, zero-config framework support.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -83,13 +83,13 @@
|
|
|
83
83
|
"@tanstack/intent": "0.0.42"
|
|
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.101.0",
|
|
87
|
+
"@fallow-cli/darwin-x64": "2.101.0",
|
|
88
|
+
"@fallow-cli/linux-x64-gnu": "2.101.0",
|
|
89
|
+
"@fallow-cli/linux-arm64-gnu": "2.101.0",
|
|
90
|
+
"@fallow-cli/linux-x64-musl": "2.101.0",
|
|
91
|
+
"@fallow-cli/linux-arm64-musl": "2.101.0",
|
|
92
|
+
"@fallow-cli/win32-arm64-msvc": "2.101.0",
|
|
93
|
+
"@fallow-cli/win32-x64-msvc": "2.101.0"
|
|
94
94
|
}
|
|
95
95
|
}
|
|
@@ -505,7 +505,7 @@ fallow health --format json --quiet --trend
|
|
|
505
505
|
{
|
|
506
506
|
"kind": "health",
|
|
507
507
|
"schema_version": 7,
|
|
508
|
-
"version": "2.
|
|
508
|
+
"version": "2.101.0",
|
|
509
509
|
"elapsed_ms": 32,
|
|
510
510
|
"summary": {
|
|
511
511
|
"files_analyzed": 482,
|
|
@@ -892,7 +892,7 @@ fallow audit \
|
|
|
892
892
|
{
|
|
893
893
|
"kind": "audit",
|
|
894
894
|
"schema_version": 7,
|
|
895
|
-
"version": "2.
|
|
895
|
+
"version": "2.101.0",
|
|
896
896
|
"command": "audit",
|
|
897
897
|
"verdict": "fail",
|
|
898
898
|
"changed_files_count": 12,
|
|
@@ -967,7 +967,7 @@ fallow flags --format json --quiet --workspace my-package
|
|
|
967
967
|
```json
|
|
968
968
|
{
|
|
969
969
|
"schema_version": 7,
|
|
970
|
-
"version": "2.
|
|
970
|
+
"version": "2.101.0",
|
|
971
971
|
"elapsed_ms": 116,
|
|
972
972
|
"feature_flags": [],
|
|
973
973
|
"total_flags": 0
|
|
@@ -1067,7 +1067,7 @@ fallow security --gate newly-reachable --changed-since origin/main
|
|
|
1067
1067
|
{
|
|
1068
1068
|
"kind": "security",
|
|
1069
1069
|
"schema_version": "4",
|
|
1070
|
-
"version": "2.
|
|
1070
|
+
"version": "2.101.0",
|
|
1071
1071
|
"elapsed_ms": 42,
|
|
1072
1072
|
"config": {
|
|
1073
1073
|
"rules": {
|
|
@@ -1096,7 +1096,7 @@ fallow security --gate newly-reachable --changed-since origin/main
|
|
|
1096
1096
|
{
|
|
1097
1097
|
"kind": "security",
|
|
1098
1098
|
"schema_version": "4",
|
|
1099
|
-
"version": "2.
|
|
1099
|
+
"version": "2.101.0",
|
|
1100
1100
|
"elapsed_ms": 42,
|
|
1101
1101
|
"config": {
|
|
1102
1102
|
"rules": {
|
|
@@ -1762,7 +1762,7 @@ The HTTP layer mirrors the bash `gh_api_retry` / `curl_retry` helpers: `FALLOW_A
|
|
|
1762
1762
|
{
|
|
1763
1763
|
"kind": "dead-code",
|
|
1764
1764
|
"schema_version": 7,
|
|
1765
|
-
"version": "2.
|
|
1765
|
+
"version": "2.101.0",
|
|
1766
1766
|
"elapsed_ms": 45,
|
|
1767
1767
|
"total_issues": 12,
|
|
1768
1768
|
"entry_points": {
|
|
@@ -1922,7 +1922,7 @@ When `--baseline` is used in combined output, the JSON includes a `baseline_delt
|
|
|
1922
1922
|
{
|
|
1923
1923
|
"kind": "dupes",
|
|
1924
1924
|
"schema_version": 7,
|
|
1925
|
-
"version": "2.
|
|
1925
|
+
"version": "2.101.0",
|
|
1926
1926
|
"elapsed_ms": 82,
|
|
1927
1927
|
"total_clones": 15,
|
|
1928
1928
|
"total_lines_duplicated": 230,
|
|
@@ -1966,11 +1966,11 @@ When running `fallow` with no subcommand (all analyses), the JSON output combine
|
|
|
1966
1966
|
{
|
|
1967
1967
|
"kind": "combined",
|
|
1968
1968
|
"schema_version": 7,
|
|
1969
|
-
"version": "2.
|
|
1969
|
+
"version": "2.101.0",
|
|
1970
1970
|
"elapsed_ms": 159,
|
|
1971
1971
|
"check": {
|
|
1972
1972
|
"schema_version": 7,
|
|
1973
|
-
"version": "2.
|
|
1973
|
+
"version": "2.101.0",
|
|
1974
1974
|
"elapsed_ms": 45,
|
|
1975
1975
|
"total_issues": 12,
|
|
1976
1976
|
"unused_files": [],
|