Skip to content

Instantly share code, notes, and snippets.

@trkaplan
Forked from danielbayley/pnpm.command
Created December 8, 2021 17:52
Show Gist options
  • Select an option

  • Save trkaplan/84de03c05689dfff6e8a78c79aa28da9 to your computer and use it in GitHub Desktop.

Select an option

Save trkaplan/84de03c05689dfff6e8a78c79aa28da9 to your computer and use it in GitHub Desktop.
A shim to seamlessly alias @npm to @pnpm.
#! /bin/zsh -f
if (command which -s pnpm) npm () {
case $@ in
*-g*) command npm $@;;
*) pnpm $@;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment