1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-22 13:50:09 +00:00

Add convenience aliases for installation of npm modules

This commit is contained in:
James Womack 2015-02-12 23:19:43 -08:00
parent 550ccca91c
commit 6967393fe6

View file

@ -1 +1,7 @@
eval "$(npm completion 2>/dev/null)" 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 "