Skip to content

Commit 50f63f3

Browse files
committed
Avoid auto-upgrade of node "@types/vscode"
1 parent ec722c7 commit 50f63f3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/dependabot.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ updates:
2020
## Ignore all updates for 'zod' as our 'zod' version must match the
2121
## version of 'zod' used by the '@modelcontextprotocol/sdk' dependency.
2222
- dependency-name: 'zod'
23+
## Ignore all updates for '@types/vscode' as its version tracks VS Code
24+
## minor releases and any bump would expose APIs newer than the floor
25+
## declared by 'engines.vscode' in 'extensions/vscode/package.json'.
26+
## Bump this manually together with 'engines.vscode' when raising the
27+
## minimum supported VS Code version.
28+
- dependency-name: '@types/vscode'
2329
versioning-strategy: 'increase'
2430
groups:
2531
all-npm-dependencies:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"tidy": "npm run lint:fix && npm run format && npm run lint:md",
5555
"tidy:check": "npm run lint && npm run format:check",
5656
"upgrade": "npm run upgrade:node",
57-
"upgrade:node": "npx -y npm-check-updates --color --install always --peer --reject zod --root --upgrade --workspaces"
57+
"upgrade:node": "npx -y npm-check-updates --color --install always --peer --reject zod,@types/vscode --root --upgrade --workspaces"
5858
},
5959
"workspaces": [
6060
"client",

0 commit comments

Comments
 (0)