Skip to content

Commit

Permalink
docs(readme): use npm ci when building vscode-js-debug
Browse files Browse the repository at this point in the history
  • Loading branch information
icholy committed Sep 21, 2023
1 parent 03bd296 commit 6f277ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ You must download and build a copy of [vscode-js-debug](https://github.com/micro
use {
"microsoft/vscode-js-debug",
opt = true,
run = "npm install --legacy-peer-deps && npx gulp vsDebugServerBundle && mv dist out"
run = "npm ci --loglevel=error && npx gulp vsDebugServerBundle && mv dist out"
}
```

Expand All @@ -43,7 +43,7 @@ use {
```bash
git clone https://github.com/microsoft/vscode-js-debug
cd vscode-js-debug
npm install --legacy-peer-deps
npm ci
npx gulp vsDebugServerBundle
mv dist out
```
Expand Down

0 comments on commit 6f277ce

Please sign in to comment.