Browse Source

Merge pull request #4939 from AntouanK/feature/npm-outdated

Add alias for "npm outdated"
Robby Russell 8 years ago
parent
commit
7697c402da
1 changed files with 3 additions and 0 deletions
  1. 3 0
      plugins/npm/npm.plugin.zsh

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

@@ -17,3 +17,6 @@ alias npmD="npm i -D "
 # Execute command from node_modules folder based on current directory
 # i.e npmE gulp
 alias npmE='PATH="$(npm bin)":"$PATH"'
+
+# Check which npm modules are outdated
+alias npmO="npm outdated"