From 1836671d53213e5a1f3cab47fe95e8f6333f2e0f Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Mon, 2 Dec 2019 15:17:55 +0100 Subject: Switch back to npm install Locks like it honors package.lock nowdays --- xtask/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'xtask/src/main.rs') diff --git a/xtask/src/main.rs b/xtask/src/main.rs index c97bfec97..c52902bb5 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -182,7 +182,8 @@ fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> { eprintln!("\nERROR: `npm --version` failed, `npm` is required to build the VS Code plugin") } - 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" } + .run()?; Cmd { unix: r"npm run package --scripts-prepend-node-path", windows: r"cmd.exe /c npm run package", -- cgit v1.2.3 From c7291386d31c1991aac917c5580f1c3ebfa48aed Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 19 Dec 2019 18:27:44 +0100 Subject: :arrow_up: Rust --- xtask/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xtask/src/main.rs') diff --git a/xtask/src/main.rs b/xtask/src/main.rs index c52902bb5..4201c6a6a 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -20,7 +20,7 @@ use xtask::{ }; // Latest stable, feel free to send a PR if this lags behind. -const REQUIRED_RUST_VERSION: u32 = 39; +const REQUIRED_RUST_VERSION: u32 = 40; struct InstallOpt { client: Option, -- cgit v1.2.3