fallow 1.8.1 → 2.0.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 +2 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -17,7 +17,8 @@ npm install -g fallow
|
|
|
17
17
|
## Usage
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
fallow
|
|
20
|
+
fallow # All analyses -- zero config, sub-second
|
|
21
|
+
fallow dead-code # Unused code only
|
|
21
22
|
fallow dupes # Duplication detection -- find copy-paste clones
|
|
22
23
|
fallow dupes --mode semantic # Catch clones with renamed variables
|
|
23
24
|
fallow health # Complexity metrics -- cyclomatic + cognitive
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
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": "
|
|
43
|
-
"@fallow-cli/darwin-x64": "
|
|
44
|
-
"@fallow-cli/linux-x64-gnu": "
|
|
45
|
-
"@fallow-cli/linux-arm64-gnu": "
|
|
46
|
-
"@fallow-cli/linux-x64-musl": "
|
|
47
|
-
"@fallow-cli/linux-arm64-musl": "
|
|
48
|
-
"@fallow-cli/win32-x64-msvc": "
|
|
42
|
+
"@fallow-cli/darwin-arm64": "2.0.0",
|
|
43
|
+
"@fallow-cli/darwin-x64": "2.0.0",
|
|
44
|
+
"@fallow-cli/linux-x64-gnu": "2.0.0",
|
|
45
|
+
"@fallow-cli/linux-arm64-gnu": "2.0.0",
|
|
46
|
+
"@fallow-cli/linux-x64-musl": "2.0.0",
|
|
47
|
+
"@fallow-cli/linux-arm64-musl": "2.0.0",
|
|
48
|
+
"@fallow-cli/win32-x64-msvc": "2.0.0"
|
|
49
49
|
}
|
|
50
50
|
}
|