Skip to content

Commit

Permalink
fix: npm install in root of the repo before building
Browse files Browse the repository at this point in the history
  • Loading branch information
glebbash committed Jun 20, 2024
1 parent 2cc6fe4 commit 32ad62b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -1055,13 +1055,13 @@
"location": "wasm-wasi-core",
"custom": [
"cd wasm-wasi-core && jq '.scripts[\"update:version\"] = \"\"' package.json > tmp.json && mv tmp.json package.json",
"cd wasm-wasi-core && npm i && vsce package -o extension.vsix"
"npm i && cd wasm-wasi-core && vsce package -o extension.vsix"
]
},
"ms-vscode.webshell": {
"repository": "https://github.com/microsoft/vscode-wasm.git",
"location": "webshell",
"custom": ["cd webshell && npm i && vsce package -o extension.vsix"]
"custom": ["npm i && cd webshell && vsce package -o extension.vsix"]
},
"msjsdiag.debugger-for-edge": {
"repository": "https://github.com/Microsoft/vscode-edge-debug2"
Expand Down

0 comments on commit 32ad62b

Please sign in to comment.