Provide a maximum node version in package.json
As recommended here https://github.com/github/vscode-codeql/pull/1369#issuecomment-1142418037, since the current build for this extension does not work with Node v18 https://github.com/github/vscode-codeql/issues/1373, it would be good to set a maximum node version until this gets addressed. So we're updating `engines` here to allow for a maximum version, which in this case is v17.0.0.
This commit is contained in:
2
extensions/ql-vscode/package-lock.json
generated
2
extensions/ql-vscode/package-lock.json
generated
@@ -114,7 +114,7 @@
|
||||
"webpack-cli": "^4.6.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16.11.25",
|
||||
"node": "^16.13.0",
|
||||
"npm": ">=7.20.6",
|
||||
"vscode": "^1.59.0"
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
},
|
||||
"engines": {
|
||||
"vscode": "^1.59.0",
|
||||
"node": ">=16.11.25",
|
||||
"node": "^16.13.0",
|
||||
"npm": ">=7.20.6"
|
||||
},
|
||||
"categories": [
|
||||
|
||||
Reference in New Issue
Block a user