1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-12 00:40:07 +00:00

add npm aliases (#5290)

This commit is contained in:
Aaron Decker 2016-08-12 23:49:42 -04:00 committed by Robby Russell
parent ae21102030
commit 0181fe4970

View file

@ -20,3 +20,10 @@ alias npmE='PATH="$(npm bin)":"$PATH"'
# Check which npm modules are outdated
alias npmO="npm outdated"
# Run npm start
alias npmst="npm start"
# Run npm test
alias npmt="npm test"