Skip to content

Commit f99e4b3

Browse files
committed
chore(dependabot): ignore @types/node major updates
Types track the Node runtime major — CI, dev, and the pkg-compiled MCP sidecar all run Node 22 (Maintenance LTS until Apr 2027). @types/node majors will be bumped manually when the runtime moves (decision: stay on 22, revisit at the Node 26 LTS promotion in Oct 2026).
1 parent a66fc80 commit f99e4b3

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ updates:
2121
groups:
2222
npm-minor-patch:
2323
update-types: ["minor", "patch"]
24+
ignore:
25+
# @types/node tracks the Node runtime major (22 — CI, dev, and the
26+
# pkg-compiled sidecar all run 22). Majors are bumped manually when
27+
# the runtime moves, not by Dependabot (#1101/#1094, 2026-07).
28+
- dependency-name: "@types/node"
29+
update-types: ["version-update:semver-major"]
2430

2531
- package-ecosystem: npm
2632
directory: /vmark-mcp-server
@@ -30,6 +36,10 @@ updates:
3036
groups:
3137
npm-minor-patch:
3238
update-types: ["minor", "patch"]
39+
ignore:
40+
# Same @types/node policy as the root manifest above.
41+
- dependency-name: "@types/node"
42+
update-types: ["version-update:semver-major"]
3343

3444
- package-ecosystem: npm
3545
directory: /website

0 commit comments

Comments
 (0)