Archived
1
0

fix(npm): use correct flags and update version for npm (#5533)

* fix: update npm-postinstall.sh script

Add --legacy-peer-deps to deal with weird npm issue with vscode
dependencies.

See: https://stackoverflow.com/a/66620869/3015595

* fix: use npm in release-standalone

* chore: update package.json

* chore: bump plugin engine for tests
This commit is contained in:
Joe Previte 2022-09-06 11:03:27 -07:00 committed by GitHub
parent 6742e945cc
commit da03a648c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ main() {
ln -s "./lib/node" "$RELEASE_PATH/node" ln -s "./lib/node" "$RELEASE_PATH/node"
pushd "$RELEASE_PATH" pushd "$RELEASE_PATH"
yarn --production --frozen-lockfile npm install --unsafe-perm --omit=dev
popd popd
} }

View File

@ -140,7 +140,7 @@ install_with_yarn_or_npm() {
echo "yarn.lock file present, running in development mode. use yarn to install code-server!" echo "yarn.lock file present, running in development mode. use yarn to install code-server!"
exit 1 exit 1
else else
npm install --omit=dev npm install --unsafe-perm --legacy-peer-deps --omit=dev
fi fi
;; ;;
*) *)

View File

@ -1,7 +1,7 @@
{ {
"name": "code-server", "name": "code-server",
"license": "MIT", "license": "MIT",
"version": "4.6.1", "version": "4.6.1-1",
"description": "Run VS Code on a remote server.", "description": "Run VS Code on a remote server.",
"homepage": "https://github.com/coder/code-server", "homepage": "https://github.com/coder/code-server",
"bugs": { "bugs": {

View File

@ -3,7 +3,7 @@
"name": "test-plugin", "name": "test-plugin",
"version": "1.0.0", "version": "1.0.0",
"engines": { "engines": {
"code-server": "^4.0.1" "code-server": "^4.6.1-1"
}, },
"main": "out/index.js", "main": "out/index.js",
"devDependencies": { "devDependencies": {