rev-dep 2.3.1 → 2.3.2

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 -2
  2. package/package.json +4 -4
package/Readme.md CHANGED
@@ -12,7 +12,7 @@
12
12
  <p align="center">
13
13
  Dependency analysis and optimization toolkit for modern JavaScript and TypeScript projects.
14
14
  <br>
15
- Trace imports, find unused code, clean dependencies — all from a blazing-fast CLI.
15
+ Trace imports, identify circular dependencies, find unused code, clean node modules — all from a blazing-fast CLI.
16
16
  </p>
17
17
 
18
18
  ---
@@ -743,7 +743,7 @@ Benchmark performed with `hyperfine` using 8 runs per test and 4 warm up runs, t
743
743
  | 🥇 [rev-dep](https://github.com/jayu/rev-dep) | 2.0.0 | `rev-dep circular` | 397 ms |
744
744
  | 🥈 [dpdm-fast](https://github.com/SunSince90/dpdm-fast) | 1.0.14 | `dpdm --no-tree --no-progress --no-warning` + list of directories with source code | 4960 ms |
745
745
  | 🥉 [dpdm](https://github.com/acrazing/dpdm) | 3.14.0 | `dpdm --no-warning` + list of directories with source code | 5030 ms |
746
- | [skott](https://github.com/antoine-coulon/skott) | 0.35.6 | node skoscript using `findCircularDependencies` function | 29575 ms |
746
+ | [skott](https://github.com/antoine-coulon/skott) | 0.35.6 | node script using skott `findCircularDependencies` function | 29575 ms |
747
747
  | [madge](https://github.com/pahen/madge) | 8.0.0 | `madge --circular --extensions js,ts,jsx,tsx .` | 69328 ms |
748
748
  | [circular-dependency-scanner](https://github.com/emosheeep/circular-dependency-scanner) | 2.3.0 | `ds` - out of memory error | n/a |
749
749
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rev-dep",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Trace imports, detect unused code, clean dependencies — all with a super-fast CLI",
5
5
  "bin": "bin.js",
6
6
  "files": [
@@ -17,9 +17,9 @@
17
17
  "node": ">=18"
18
18
  },
19
19
  "optionalDependencies": {
20
- "@rev-dep/darwin-arm64": "2.3.1",
21
- "@rev-dep/linux-x64": "2.3.1",
22
- "@rev-dep/win32-x64": "2.3.1"
20
+ "@rev-dep/darwin-arm64": "2.3.2",
21
+ "@rev-dep/linux-x64": "2.3.2",
22
+ "@rev-dep/win32-x64": "2.3.2"
23
23
  },
24
24
  "keywords": [
25
25
  "dependency-analysis",