Update npm.plugin.zsh

Added npm save exact.
This commit is contained in:
Daniele 2016-04-14 22:57:34 +02:00
commit 76f80ed925

View file

@ -10,6 +10,9 @@ alias npmg="npm i -g "
# npms is used by https://www.npmjs.com/package/npms # npms is used by https://www.npmjs.com/package/npms
alias npmS="npm i -S " alias npmS="npm i -S "
# Install and save the exact version of dependencies in your package.json
alias npmSE="npm i -SE "
# Install and save to dev-dependencies in your package.json # Install and save to dev-dependencies in your package.json
# npmd is used by https://github.com/dominictarr/npmd # npmd is used by https://github.com/dominictarr/npmd
alias npmD="npm i -D " alias npmD="npm i -D "