Skip to content

Commit 1836671

Browse files
committed
Switch back to npm install
Locks like it honors package.lock nowdays
1 parent 9712889 commit 1836671

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

xtask/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> {
182182
eprintln!("\nERROR: `npm --version` failed, `npm` is required to build the VS Code plugin")
183183
}
184184

185-
Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm ci", work_dir: "./editors/code" }.run()?;
185+
Cmd { unix: r"npm install", windows: r"cmd.exe /c npm install", work_dir: "./editors/code" }
186+
.run()?;
186187
Cmd {
187188
unix: r"npm run package --scripts-prepend-node-path",
188189
windows: r"cmd.exe /c npm run package",

0 commit comments

Comments
 (0)