rev-dep 1.0.3 β 1.0.6
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 +7 -3
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -3,13 +3,17 @@
|
|
|
3
3
|
</h3>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
|
-
|
|
6
|
+
File dependency debugging tool for TypeScript projects
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
<img alt="rev-dep version" src="https://img.shields.io/npm/v/rev-dep"> <img alt="rev-dep license" src="https://img.shields.io/npm/l/rev-dep"> <img alt="rev-dep PRs welcome" src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square">
|
|
12
12
|
|
|
13
|
+
## Pardon π€«
|
|
14
|
+
|
|
15
|
+
Since you landed here, you might be also interested in my other project - supercharged multiline code search and replace tool - [codeque.co](https://codeque.co) π₯³
|
|
16
|
+
|
|
13
17
|
## About π£
|
|
14
18
|
|
|
15
19
|
The tool was created help with daily dev struggles by answering these questions:
|
|
@@ -26,7 +30,7 @@ It's especially useful in JS world without TypeScript or tests coverage.
|
|
|
26
30
|
|
|
27
31
|
It also helps to identify and eliminate dead files, understand the complexity of the file dependencies
|
|
28
32
|
|
|
29
|
-
[π¦ Jump to CLI reference](#cli-reference)
|
|
33
|
+
[π¦ Jump to CLI reference](#cli-reference-)
|
|
30
34
|
|
|
31
35
|
[πΈοΈ `export * from` problem](#export-from-problem)
|
|
32
36
|
|
|
@@ -334,7 +338,7 @@ Project can be used as a CLI tool or as a module
|
|
|
334
338
|
|
|
335
339
|
### CLI Tool
|
|
336
340
|
|
|
337
|
-
For CLI usage see [CLI reference](#cli-reference)
|
|
341
|
+
For CLI usage see [CLI reference](#cli-reference-)
|
|
338
342
|
|
|
339
343
|
### Module
|
|
340
344
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rev-dep",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Dependency debugging tool for JavaScript and TypeScript projects",
|
|
5
5
|
"main": "dist/module.js",
|
|
6
6
|
"bin": "bin.js",
|
|
@@ -69,9 +69,17 @@
|
|
|
69
69
|
"entry points",
|
|
70
70
|
"dependency resolution",
|
|
71
71
|
"reverse dependency resolution",
|
|
72
|
-
"dependency tree",
|
|
73
72
|
"import path",
|
|
74
73
|
"resolution path",
|
|
75
|
-
"dependency optimization"
|
|
74
|
+
"dependency optimization",
|
|
75
|
+
"dependency analysis",
|
|
76
|
+
"bundle",
|
|
77
|
+
"dependency tree",
|
|
78
|
+
"imports",
|
|
79
|
+
"dependencies checking",
|
|
80
|
+
"imports debugging",
|
|
81
|
+
"imports analysis",
|
|
82
|
+
"imports search",
|
|
83
|
+
"file dependencies"
|
|
76
84
|
]
|
|
77
85
|
}
|