rev-dep 2.13.1 → 2.13.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.
- package/Readme.md +11 -2
- package/package.json +5 -5
package/Readme.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
<p align="center">
|
|
8
8
|
<a href="#capabilities-">Capabilities</a> •
|
|
9
9
|
<a href="#installation-">Installation</a> •
|
|
10
|
+
<a href="https://rev-dep.com/docs/intro"><b>Documentation</b></a> •
|
|
10
11
|
<a href="#exploratory-toolkit-">Exploratory Toolkit</a> •
|
|
11
12
|
<a href="#cli-reference-">CLI Reference</a>
|
|
12
13
|
</p>
|
|
@@ -31,7 +32,7 @@ As codebases scale, maintaining a mental map of dependencies becomes impossible.
|
|
|
31
32
|
|
|
32
33
|
<p align="center"><b>Think of Rev-dep as a high-speed linter for your dependency graph.</b></p>
|
|
33
34
|
|
|
34
|
-
**Consolidate fragmented, sequential checks from multiple slow tools into a single, high-performance engine.** Rev-dep executes a full suite of governance checks
|
|
35
|
+
**Consolidate fragmented, sequential checks from multiple slow tools into a single, high-performance engine.** Rev-dep executes a full suite of governance checks - including circularity, orphans, module boundaries and more, in one parallelized pass. Implemented in **Go** to bypass the performance bottlenecks of Node-based analysis, it can audit a **500k+ LoC project in approximately 500ms**.
|
|
35
36
|
|
|
36
37
|
### **Automated Codebase Governance**
|
|
37
38
|
|
|
@@ -95,6 +96,8 @@ Use CLI commands for ad-hoc dependency exploration:
|
|
|
95
96
|
|
|
96
97
|
## **Installation 📦**
|
|
97
98
|
|
|
99
|
+
Full documentation: [rev-dep.com/docs/intro](https://rev-dep.com/docs/intro)
|
|
100
|
+
|
|
98
101
|
**Install locally to set up project check scripts**
|
|
99
102
|
|
|
100
103
|
```
|
|
@@ -781,6 +784,7 @@ rev-dep config run [flags]
|
|
|
781
784
|
-h, --help help for run
|
|
782
785
|
--list-all-issues List all issues instead of limiting output
|
|
783
786
|
--package-json string Path to package.json (default: ./package.json)
|
|
787
|
+
--recheck Run all checks again after '--fix' to validate the final state
|
|
784
788
|
--rules strings Subset of rules to run (comma-separated list of rule paths)
|
|
785
789
|
--tsconfig-json string Path to tsconfig.json (default: ./tsconfig.json)
|
|
786
790
|
-v, --verbose Show warnings and verbose output
|
|
@@ -1308,7 +1312,7 @@ It can represent:
|
|
|
1308
1312
|
* an individual page or feature
|
|
1309
1313
|
* configuration or test bootstrap files
|
|
1310
1314
|
|
|
1311
|
-
|
|
1315
|
+
- depending on the project structure.
|
|
1312
1316
|
|
|
1313
1317
|
### Unused / Dead file
|
|
1314
1318
|
|
|
@@ -1350,3 +1354,8 @@ The top-level directory used as the starting point for dependency analysis.
|
|
|
1350
1354
|
## Made in 🇵🇱 and 🇯🇵 with 🧠 by [@jayu](https://github.com/jayu)
|
|
1351
1355
|
|
|
1352
1356
|
I hope that this small piece of software will help you discover and understood complexity of your project hence make you more confident while refactoring. If this tool was useful, don't hesitate to give it a ⭐!
|
|
1357
|
+
|
|
1358
|
+
### My other projects
|
|
1359
|
+
|
|
1360
|
+
- [CodeQue - Structural code search](https://codeque.co)
|
|
1361
|
+
- [Structural Code Search VSCode](https://marketplace.visualstudio.com/items?itemName=CodeQue.codeque)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rev-dep",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.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": [
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "https://github.com/jayu/rev-dep"
|
|
14
14
|
},
|
|
15
|
-
"homepage": "https://
|
|
15
|
+
"homepage": "https://rev-dep.com",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=18"
|
|
18
18
|
},
|
|
19
19
|
"optionalDependencies": {
|
|
20
|
-
"@rev-dep/darwin-arm64": "2.13.
|
|
21
|
-
"@rev-dep/linux-x64": "2.13.
|
|
22
|
-
"@rev-dep/win32-x64": "2.13.
|
|
20
|
+
"@rev-dep/darwin-arm64": "2.13.2",
|
|
21
|
+
"@rev-dep/linux-x64": "2.13.2",
|
|
22
|
+
"@rev-dep/win32-x64": "2.13.2"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"dependency-analysis",
|