summaryrefslogtreecommitdiff
path: root/plugins/npm/npm.plugin.zsh
diff options
context:
space:
mode:
authorAhmed Hisham Ismail <ahm3d.hisham@gmail.com>2015-08-03 22:06:33 +0200
committerAhmed Hisham Ismail <ahm3d.hisham@gmail.com>2015-08-03 22:06:33 +0200
commite1353fce3ccd88441f97b65adaa98e15a640ed33 (patch)
tree891b37fc41141634651cf1d9e016a75a63c965f9 /plugins/npm/npm.plugin.zsh
parent3d5b3430fd9da12f6e33f534e487fe9b18928ac7 (diff)
downloadzsh-e1353fce3ccd88441f97b65adaa98e15a640ed33.tar.gz
zsh-e1353fce3ccd88441f97b65adaa98e15a640ed33.tar.bz2
zsh-e1353fce3ccd88441f97b65adaa98e15a640ed33.zip
Adds npmE alias
Option to execute a command from node_modules folder
Diffstat (limited to 'plugins/npm/npm.plugin.zsh')
-rw-r--r--plugins/npm/npm.plugin.zsh3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/npm/npm.plugin.zsh b/plugins/npm/npm.plugin.zsh
index 68ec5fabd..6d7357622 100644
--- a/plugins/npm/npm.plugin.zsh
+++ b/plugins/npm/npm.plugin.zsh
@@ -12,3 +12,6 @@ alias npmS="npm i -S "
# Install and save to dev-dependencies in your package.json
# npmd is used by https://github.com/dominictarr/npmd
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'"