fallow 1.4.0 → 1.6.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 +1 -0
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -20,6 +20,7 @@ npm install -g fallow
20
20
  fallow check # Unused code analysis -- zero config, sub-second
21
21
  fallow dupes # Duplication detection -- find copy-paste clones
22
22
  fallow dupes --mode semantic # Catch clones with renamed variables
23
+ fallow health # Complexity metrics -- cyclomatic + cognitive
23
24
  fallow fix --dry-run # Preview auto-removal of unused exports and deps
24
25
  ```
25
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fallow",
3
- "version": "1.4.0",
3
+ "version": "1.6.0",
4
4
  "description": "Find unused code, circular dependencies, and code duplication in JavaScript/TypeScript 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.4.0",
43
- "@fallow-cli/darwin-x64": "1.4.0",
44
- "@fallow-cli/linux-x64-gnu": "1.4.0",
45
- "@fallow-cli/linux-arm64-gnu": "1.4.0",
46
- "@fallow-cli/linux-x64-musl": "1.4.0",
47
- "@fallow-cli/linux-arm64-musl": "1.4.0",
48
- "@fallow-cli/win32-x64-msvc": "1.4.0"
42
+ "@fallow-cli/darwin-arm64": "1.6.0",
43
+ "@fallow-cli/darwin-x64": "1.6.0",
44
+ "@fallow-cli/linux-x64-gnu": "1.6.0",
45
+ "@fallow-cli/linux-arm64-gnu": "1.6.0",
46
+ "@fallow-cli/linux-x64-musl": "1.6.0",
47
+ "@fallow-cli/linux-arm64-musl": "1.6.0",
48
+ "@fallow-cli/win32-x64-msvc": "1.6.0"
49
49
  }
50
50
  }