@m4x_7/type-debt 1.0.5 → 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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -34,11 +34,11 @@ function printHelp() {
|
|
|
34
34
|
console.log(`
|
|
35
35
|
Type Debt Analyzer
|
|
36
36
|
|
|
37
|
-
Usage: npx
|
|
37
|
+
Usage: npx type-debt [directory]
|
|
38
38
|
|
|
39
39
|
Examples:
|
|
40
|
-
npx
|
|
41
|
-
npx
|
|
40
|
+
npx type-debt .
|
|
41
|
+
npx type-debt ./src
|
|
42
42
|
`);
|
|
43
43
|
process.exit(0);
|
|
44
44
|
}
|
package/package.json
CHANGED