Skip to content

Commit

Permalink
Update Node.js and VS Code dependencies to latest compatible versions (
Browse files Browse the repository at this point in the history
…#392)

- Bumped Node.js version in `.nvmrc` to `v20.17.0` to align with updated project requirements.
- Updated `@types/vscode` dependency to `1.85.0` in `package.json` and `package-lock.json`.
- Added `engines` field to `package.json` to enforce compatibility:
  - Node.js: `>=20.17.0`
  - VS Code: `^1.85.0`
  • Loading branch information
pastuxso authored Dec 10, 2024
1 parent 6be85ee commit d4043dd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.11.0
v20.17.0
13 changes: 8 additions & 5 deletions package-lock.json

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

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"browser": "./build/browser/index.js",
"engines": {
"vscode": "^1.85.0",
"node": ">=20.17.0"
},
"exports": {
"./webview": "./build/webview.js",
".": {
Expand Down Expand Up @@ -66,7 +70,7 @@
"vitest": "^2.1.5"
},
"dependencies": {
"@types/vscode": "1.78.0",
"@types/vscode": "1.85.0",
"@types/vscode-webview": "^1.57.5",
"@vscode/extension-telemetry": "^0.9.7",
"tangle": "^4.0.0"
Expand Down

0 comments on commit d4043dd

Please sign in to comment.