ng-di-graph 0.8.1 → 0.8.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.
@@ -7,14 +7,14 @@
7
7
  * Implements PRD Section 13 error handling requirements
8
8
  */
9
9
  export declare enum ExitCodes {
10
- SUCCESS = 0,// Successful execution
11
- GENERAL_ERROR = 1,// Generic error (uncaught exception)
12
- INVALID_ARGUMENTS = 2,// Invalid CLI arguments
13
- TSCONFIG_ERROR = 3,// tsconfig.json not found or invalid
14
- PARSING_ERROR = 4,// File parsing failure
15
- TYPE_RESOLUTION_ERROR = 5,// Type resolution failure
16
- MEMORY_ERROR = 6,// Memory limit exceeded
17
- FILE_NOT_FOUND = 7,// Required file not found
10
+ SUCCESS = 0,
11
+ GENERAL_ERROR = 1,
12
+ INVALID_ARGUMENTS = 2,
13
+ TSCONFIG_ERROR = 3,
14
+ PARSING_ERROR = 4,
15
+ TYPE_RESOLUTION_ERROR = 5,
16
+ MEMORY_ERROR = 6,
17
+ FILE_NOT_FOUND = 7,
18
18
  PERMISSION_ERROR = 8
19
19
  }
20
20
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-di-graph",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Angular DI dependency graph CLI tool",
5
5
  "homepage": "https://github.com/m-yoshiro/ng-di-graph/",
6
6
  "repository": {
@@ -21,7 +21,7 @@
21
21
  "dev": "tsx src/cli/index.ts",
22
22
  "dev:node": "tsx src/cli/index.ts",
23
23
  "build:bundle": "tsdown --config tsdown.config.ts",
24
- "build:types": "tsc --emitDeclarationOnly --outDir dist",
24
+ "build:types": "tsgo --emitDeclarationOnly --outDir dist",
25
25
  "build": "npm run build:bundle && npm run build:types",
26
26
  "test": "vitest run",
27
27
  "test:watch": "vitest watch",
@@ -31,7 +31,7 @@
31
31
  "format": "biome format src --write",
32
32
  "format:check": "biome format src",
33
33
  "check": "npm run lint && npm run typecheck",
34
- "typecheck": "tsc --noEmit",
34
+ "typecheck": "tsgo --noEmit",
35
35
  "clean": "rimraf dist"
36
36
  },
37
37
  "keywords": [
@@ -46,6 +46,7 @@
46
46
  "devDependencies": {
47
47
  "@biomejs/biome": "^2.3.7",
48
48
  "@types/node": "^25.0.0",
49
+ "@typescript/native-preview": "^7.0.0-dev.20260120.1",
49
50
  "@vitest/coverage-v8": "^4.0.13",
50
51
  "rimraf": "^6.1.2",
51
52
  "tsdown": "^0.19.0",