fallow 1.9.0 → 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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. 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 check # Unused code analysis -- zero config, sub-second
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": "1.9.0",
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": "1.9.0",
43
- "@fallow-cli/darwin-x64": "1.9.0",
44
- "@fallow-cli/linux-x64-gnu": "1.9.0",
45
- "@fallow-cli/linux-arm64-gnu": "1.9.0",
46
- "@fallow-cli/linux-x64-musl": "1.9.0",
47
- "@fallow-cli/linux-arm64-musl": "1.9.0",
48
- "@fallow-cli/win32-x64-msvc": "1.9.0"
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
  }