Skip to content

Commit

Permalink
Remove node 18 Support
Browse files Browse the repository at this point in the history
Seems like the latest VSCode doesn't support Node 18 any more.
  • Loading branch information
xuhdev committed Feb 6, 2025
1 parent 033478c commit 38873d2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node: [18, 20, 22]
node: [20, 22]
os:
- ubuntu-latest
- windows-latest
Expand Down
20 changes: 11 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.74",
"@types/node": "^20.14.8",
"@types/vscode": "^1.82.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
Expand Down
7 changes: 7 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,12 @@
"git-submodules": {
"enabled": true
},
"packageRules": [
{
"description": "Use types of the minimum supported Node version",
"matchPackageNames": ["@types/node"],
"allowedVersions": "<21"
}
],
"schedule": ["on Wednesday"]
}

0 comments on commit 38873d2

Please sign in to comment.