diff options
author | Ahmed Hisham Ismail <ahm3d.hisham@gmail.com> | 2015-08-03 22:06:33 +0200 |
---|---|---|
committer | Ahmed Hisham Ismail <ahm3d.hisham@gmail.com> | 2015-08-03 22:06:33 +0200 |
commit | e1353fce3ccd88441f97b65adaa98e15a640ed33 (patch) | |
tree | 891b37fc41141634651cf1d9e016a75a63c965f9 /plugins/npm/npm.plugin.zsh | |
parent | 3d5b3430fd9da12f6e33f534e487fe9b18928ac7 (diff) | |
download | zsh-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.zsh | 3 |
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'" |