ng-di-graph 0.4.1 → 0.4.5

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/README.md +6 -0
  2. package/package.json +12 -8
package/README.md CHANGED
@@ -185,6 +185,12 @@ ng-di-graph --project ./tsconfig.json --verbose
185
185
  # Shows detailed type resolution and warnings
186
186
  ```
187
187
 
188
+ ## Release workflow
189
+
190
+ - PR-driven releases via Release Please; release PR merges tag `vX.Y.Z`.
191
+ - Tag pushes trigger publish workflow: lint → typecheck → test → build → pack → publish with provenance.
192
+ - Maintainer runbook: see docs/release/ci-publish.md.
193
+
188
194
  ## Error Handling
189
195
 
190
196
  The tool provides graceful error handling:
package/package.json CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "ng-di-graph",
3
- "version": "0.4.1",
3
+ "version": "0.4.5",
4
4
  "description": "Angular DI dependency graph CLI tool",
5
+ "homepage": "https://github.com/m-yoshiro/ng-di-graph/",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/m-yoshiro/ng-di-graph.git"
9
+ },
10
+ "engines": {
11
+ "node": ">=20.19.0 <21.0.0 || >=22.12.0"
12
+ },
5
13
  "main": "dist/cli/index.cjs",
6
14
  "bin": {
7
15
  "ng-di-graph": "dist/cli/index.cjs"
@@ -24,8 +32,7 @@
24
32
  "format:check": "biome format src",
25
33
  "check": "npm run lint && npm run typecheck",
26
34
  "typecheck": "tsc --noEmit",
27
- "clean": "rimraf dist",
28
- "prepublishOnly": "npm run build"
35
+ "clean": "rimraf dist"
29
36
  },
30
37
  "keywords": [
31
38
  "angular",
@@ -38,10 +45,10 @@
38
45
  "license": "MIT",
39
46
  "devDependencies": {
40
47
  "@biomejs/biome": "^2.3.7",
41
- "@types/node": "^24.10.1",
48
+ "@types/node": "^25.0.0",
42
49
  "@vitest/coverage-v8": "^4.0.13",
43
50
  "rimraf": "^6.1.2",
44
- "tsdown": "^0.16.6",
51
+ "tsdown": "^0.17.0",
45
52
  "tsx": "^4.8.1",
46
53
  "vitest": "^4.0.10"
47
54
  },
@@ -49,8 +56,5 @@
49
56
  "commander": "^14.0.0",
50
57
  "ts-morph": "^27.0.2",
51
58
  "typescript": "^5.9.3"
52
- },
53
- "engines": {
54
- "node": ">=20.19.0 <21.0.0 || >=22.12.0"
55
59
  }
56
60
  }