Add a flag to disable pnpm (fix #743)

This commit is contained in:
Roey Darwish Dror
2021-07-19 09:43:28 +03:00
parent 9df5588308
commit 989aa053e2
2 changed files with 2 additions and 1 deletions

View File

@@ -301,7 +301,7 @@ fn run() -> Result<()> {
runner.execute(Step::Vim, "Neovim", || vim::upgrade_neovim(&base_dirs, &ctx))?;
runner.execute(Step::Vim, "voom", || vim::run_voom(&base_dirs, run_type))?;
runner.execute(Step::Node, "npm", || node::run_npm_upgrade(&ctx))?;
runner.execute(Step::Node, "pnpm", || node::pnpm_global_update(run_type))?;
runner.execute(Step::Pnpm, "pnpm", || node::pnpm_global_update(run_type))?;
runner.execute(Step::Deno, "deno", || node::deno_upgrade(&ctx))?;
runner.execute(Step::Composer, "composer", || generic::run_composer_update(&ctx))?;
runner.execute(Step::Krew, "krew", || generic::run_krew_upgrade(run_type))?;