mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
Create and cache npm completion on first run
Signed-off-by: Marc Cornellà <marc.cornella@live.com>
This commit is contained in:
parent
4b9772fffe
commit
7c1ca0e4d8
1 changed files with 7 additions and 1 deletions
|
@ -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 "
|
||||
|
|
Loading…
Reference in a new issue