fallow 2.1.0 → 2.2.1
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 +8 -8
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 code duplication. Found in seconds, not minutes. fallow analyzes your codebase for unused files, exports, dependencies, and types, detects circular dependencies, and finds duplicated code blocks. **
|
|
9
|
+
Unused code, circular dependencies, and code duplication. Found in seconds, not minutes. fallow analyzes your codebase for unused files, exports, dependencies, and types, detects circular dependencies, and finds duplicated code blocks. **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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Find unused code, circular dependencies, code duplication, and complexity hotspots in TypeScript/JavaScript projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"detect-libc": "^2.0.0"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@fallow-cli/darwin-arm64": "2.1
|
|
43
|
-
"@fallow-cli/darwin-x64": "2.1
|
|
44
|
-
"@fallow-cli/linux-x64-gnu": "2.1
|
|
45
|
-
"@fallow-cli/linux-arm64-gnu": "2.1
|
|
46
|
-
"@fallow-cli/linux-x64-musl": "2.1
|
|
47
|
-
"@fallow-cli/linux-arm64-musl": "2.1
|
|
48
|
-
"@fallow-cli/win32-x64-msvc": "2.1
|
|
42
|
+
"@fallow-cli/darwin-arm64": "2.2.1",
|
|
43
|
+
"@fallow-cli/darwin-x64": "2.2.1",
|
|
44
|
+
"@fallow-cli/linux-x64-gnu": "2.2.1",
|
|
45
|
+
"@fallow-cli/linux-arm64-gnu": "2.2.1",
|
|
46
|
+
"@fallow-cli/linux-x64-musl": "2.2.1",
|
|
47
|
+
"@fallow-cli/linux-arm64-musl": "2.2.1",
|
|
48
|
+
"@fallow-cli/win32-x64-msvc": "2.2.1"
|
|
49
49
|
}
|
|
50
50
|
}
|