diff options
author | mkucijan <[email protected]> | 2019-11-11 19:51:07 +0000 |
---|---|---|
committer | mkucijan <[email protected]> | 2019-11-11 19:51:07 +0000 |
commit | d67157c0f14804407fe4b7586bc4a61c64fa777b (patch) | |
tree | e21e004ade90ff8b42d2722425ce3fd53f4c5905 /xtask | |
parent | f742803c6a5a632af6e0aecb123920d1962e5fee (diff) |
Add '--scripts-prepend-node-pat' to npm run package
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index e04e45f15..16bddfb28 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs | |||
@@ -179,7 +179,7 @@ fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> { | |||
179 | 179 | ||
180 | Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm.cmd ci", work_dir: "./editors/code" }.run()?; | 180 | Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm.cmd ci", work_dir: "./editors/code" }.run()?; |
181 | Cmd { | 181 | Cmd { |
182 | unix: r"npm run package", | 182 | unix: r"npm run package --scripts-prepend-node-path", |
183 | windows: r"cmd.exe /c npm.cmd run package", | 183 | windows: r"cmd.exe /c npm.cmd run package", |
184 | work_dir: "./editors/code", | 184 | work_dir: "./editors/code", |
185 | } | 185 | } |