Create and cache npm completion on first run

Signed-off-by: Marc Cornellà <marc.cornella@live.com>
This commit is contained in:
Philipp Wahala 2016-02-29 10:16:26 +01:00 committed by Marc Cornellà
parent 4b9772fffe
commit 7c1ca0e4d8
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,10 @@
eval "$(npm completion 2>/dev/null)"
__NPM_COMPLETION_FILE="${ZSH_CACHE_DIR}/npm_completion"
if [[ ! -f $__NPM_COMPLETION_FILE ]]; then
npm completion >! $__NPM_COMPLETION_FILE || rm -f $__NPM_COMPLETION_FILE
fi
source $__NPM_COMPLETION_FILE
# Install dependencies globally
alias npmg="npm i -g "