Skip to content

Instantly share code, notes, and snippets.

@weotch
Created January 13, 2016 18:04
Show Gist options
  • Save weotch/394f5a598c741866d41a to your computer and use it in GitHub Desktop.
Save weotch/394f5a598c741866d41a to your computer and use it in GitHub Desktop.
npm aliases
# Run an npm script
alias run="npm run"
# Create a deduped and prined shrinkwrap file
alias shrink="npm dedupe && npm prune && npm shrinkwrap"
# Update npm deps and shrinkwrap
alias npmup="npm update && shrink"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment