We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c6eff1d + 1836671 commit c5b322eCopy full SHA for c5b322e
xtask/src/main.rs
@@ -182,7 +182,8 @@ fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> {
182
eprintln!("\nERROR: `npm --version` failed, `npm` is required to build the VS Code plugin")
183
}
184
185
- Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm ci", work_dir: "./editors/code" }.run()?;
+ Cmd { unix: r"npm install", windows: r"cmd.exe /c npm install", work_dir: "./editors/code" }
186
+ .run()?;
187
Cmd {
188
unix: r"npm run package --scripts-prepend-node-path",
189
windows: r"cmd.exe /c npm run package",
0 commit comments