Update npm.plugin.zsh

Added this alias for short-hand way for getting list of run script targets, usage:
$ npmr                    # lists available scripts
$ npmr myScript    # runs myScript
This commit is contained in:
Luke Browell 2017-02-08 11:25:09 +00:00 committed by GitHub
commit 719537b1c7

View file

@ -44,3 +44,5 @@ alias npmst="npm start"
# Run npm test
alias npmt="npm test"
# List run scripts
alias npmr="npm run"