fallow 1.6.0 → 1.7.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 -1
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # fallow
2
2
 
3
- The codebase analyzer for JavaScript and TypeScript, built in Rust.
3
+ The codebase analyzer for TypeScript and JavaScript, built in Rust.
4
4
 
5
5
  [![CI](https://github.com/fallow-rs/fallow/actions/workflows/ci.yml/badge.svg)](https://github.com/fallow-rs/fallow/actions/workflows/ci.yml)
6
6
  [![npm](https://img.shields.io/npm/v/fallow.svg)](https://www.npmjs.com/package/fallow)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fallow",
3
- "version": "1.6.0",
4
- "description": "Find unused code, circular dependencies, and code duplication in JavaScript/TypeScript projects",
3
+ "version": "1.7.0",
4
+ "description": "Find unused code, circular dependencies, and code duplication in TypeScript/JavaScript projects",
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": "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"
42
+ "@fallow-cli/darwin-arm64": "1.7.0",
43
+ "@fallow-cli/darwin-x64": "1.7.0",
44
+ "@fallow-cli/linux-x64-gnu": "1.7.0",
45
+ "@fallow-cli/linux-arm64-gnu": "1.7.0",
46
+ "@fallow-cli/linux-x64-musl": "1.7.0",
47
+ "@fallow-cli/linux-arm64-musl": "1.7.0",
48
+ "@fallow-cli/win32-x64-msvc": "1.7.0"
49
49
  }
50
50
  }