@m4x_7/type-debt 1.0.5 → 1.0.7

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/dist/index.js +3 -3
  2. 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 tsx index.ts [directory]
37
+ Usage: npx type-debt [directory]
38
38
 
39
39
  Examples:
40
- npx tsx index.ts .
41
- npx tsx index.ts ./src
40
+ npx type-debt .
41
+ npx type-debt ./src
42
42
  `);
43
43
  process.exit(0);
44
44
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4x_7/type-debt",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "description": "A high-performance TypeScript static analyzer that calculates Type Debt and generates reports.",
6
6
  "main": "./dist/index.js",