fallow 2.8.1 → 2.9.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 +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ The codebase analyzer for TypeScript and JavaScript, built in Rust.
|
|
|
6
6
|
[](https://www.npmjs.com/package/fallow)
|
|
7
7
|
[](https://github.com/fallow-rs/fallow/blob/main/LICENSE)
|
|
8
8
|
|
|
9
|
-
Unused code, circular dependencies, and
|
|
9
|
+
Unused code, circular dependencies, code duplication, complexity hotspots, and architecture boundary violations. Found in seconds, not minutes. fallow analyzes your codebase for unused files, exports, dependencies, and types, detects circular dependencies, finds duplicated code blocks, surfaces complexity hotspots, and enforces architecture boundaries. **5-41x faster** than [knip](https://knip.dev) v5 (**2-18x faster** than knip v6), **8-29x faster** than [jscpd](https://github.com/kucherenko/jscpd) for duplication detection, with no Node.js runtime dependency.
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.9.0",
|
|
4
|
+
"description": "Codebase analyzer for TypeScript/JavaScript — unused code, circular dependencies, code duplication, complexity hotspots, and architecture boundary violations",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"detect-libc": "^2.0.0"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@fallow-cli/darwin-arm64": "2.
|
|
43
|
-
"@fallow-cli/darwin-x64": "2.
|
|
44
|
-
"@fallow-cli/linux-x64-gnu": "2.
|
|
45
|
-
"@fallow-cli/linux-arm64-gnu": "2.
|
|
46
|
-
"@fallow-cli/linux-x64-musl": "2.
|
|
47
|
-
"@fallow-cli/linux-arm64-musl": "2.
|
|
48
|
-
"@fallow-cli/win32-x64-msvc": "2.
|
|
42
|
+
"@fallow-cli/darwin-arm64": "2.9.0",
|
|
43
|
+
"@fallow-cli/darwin-x64": "2.9.0",
|
|
44
|
+
"@fallow-cli/linux-x64-gnu": "2.9.0",
|
|
45
|
+
"@fallow-cli/linux-arm64-gnu": "2.9.0",
|
|
46
|
+
"@fallow-cli/linux-x64-musl": "2.9.0",
|
|
47
|
+
"@fallow-cli/linux-arm64-musl": "2.9.0",
|
|
48
|
+
"@fallow-cli/win32-x64-msvc": "2.9.0"
|
|
49
49
|
}
|
|
50
50
|
}
|