Skip to content

Commit 385b6ce

Browse files
author
Jendrik Wenke
committed
remove update-all script
1 parent 3bdc4e4 commit 385b6ce

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ object Build {
915915
val coursier = baseDirectory.value / "out/coursier"
916916
val packageJson = baseDirectory.value / "package.json"
917917
if (!coursier.exists || packageJson.lastModified > coursier.lastModified)
918-
runProcess(Seq("npm", "run", "update-all"), wait = true, directory = baseDirectory.value)
918+
runProcess(Seq("npm", "install"), wait = true, directory = baseDirectory.value)
919919
val tsc = baseDirectory.value / "node_modules" / ".bin" / "tsc"
920920
runProcess(Seq(tsc.getAbsolutePath, "--pretty", "--project", baseDirectory.value.getAbsolutePath), wait = true)
921921

vscode-dotty/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,8 @@
4747
},
4848
"scripts": {
4949
"tsc": "./node_modules/.bin/tsc",
50-
"vscode:prepublish": "npm run update-all && ./node_modules/.bin/tsc -p ./",
50+
"vscode:prepublish": "npm install && ./node_modules/.bin/tsc -p ./",
5151
"compile": "./node_modules/.bin/tsc -p ./",
52-
"update-all": "npm install",
5352
"test": "node ./node_modules/vscode/bin/test",
5453
"postinstall": "node ./node_modules/vscode/bin/install && curl -L -o out/coursier https://github.com/coursier/coursier/raw/v1.0.0/coursier"
5554
},

0 commit comments

Comments
 (0)