diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-03-05 10:22:47 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-03-05 10:22:47 +0000 |
commit | 31fd10b2a5fe11476e7f4a21b0f0955ea934e3a6 (patch) | |
tree | 04d526933a777804ac30b251cd79903e6a457feb /xtask | |
parent | b6819c25950eb49dd9bebf5e2190971fff19fe91 (diff) | |
parent | 166c07b28d0f5431bb599e067336c332d912e401 (diff) |
Merge #3470
3470: Install node deps during dist r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/src/dist.rs | 1 |
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 | } |