aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xtask/src/dist.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs
index 737751ae8..e1126602a 100644
--- a/xtask/src/dist.rs
+++ b/xtask/src/dist.rs
@@ -39,6 +39,7 @@ fn dist_client(nightly: bool) -> Result<()> {
39 } 39 }
40 fs2::write(package_json_path, package_json)?; 40 fs2::write(package_json_path, package_json)?;
41 41
42 run!("npm ci")?;
42 run!("npx vsce package -o ../../dist/rust-analyzer.vsix")?; 43 run!("npx vsce package -o ../../dist/rust-analyzer.vsix")?;
43 Ok(()) 44 Ok(())
44} 45}