1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01: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"