Browse Source

add npm aliases (#5290)

Aaron Decker 8 years ago
parent
commit
0181fe4970
1 changed files with 7 additions and 0 deletions
  1. 7 0
      plugins/npm/npm.plugin.zsh

+ 7 - 0
plugins/npm/npm.plugin.zsh

@@ -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"
+