Skip to content

Commit

Permalink
Add a flag to disable pnpm (fix r-darwish#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
r-darwish committed Jul 19, 2021
1 parent 9df5588 commit 989aa05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ pub enum Step {
Pipx,
Pip3,
Pkg,
Pnpm,
Powershell,
Raco,
Remotes,
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))?;
Expand Down

0 comments on commit 989aa05

Please sign in to comment.