1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-11 00:10:08 +00:00

Merge pull request #3577 from jameswomack/npm_convenience_aliases

Add convenience aliases for installation of npm modules
This commit is contained in:
Robby Russell 2015-02-22 10:08:51 -08:00
commit 2f23f33067

View file

@ -1 +1,7 @@
eval "$(npm completion 2>/dev/null)"
# Install and save to dependencies
alias npms="npm i -S "
# Install and save to dev-dependencies
alias npmd="npm i -D "