2012-02-01 04:37:51 +00:00
|
|
|
#
|
2012-12-13 15:10:55 +00:00
|
|
|
# Loads the Node Version Manager and enables npm completion.
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
2012-12-13 15:10:55 +00:00
|
|
|
# Zeh Rizzatti <zehrizzatti@gmail.com>
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
|
2014-10-13 15:57:20 +00:00
|
|
|
# Load manually installed NVM into the shell session.
|
2012-12-13 15:10:55 +00:00
|
|
|
if [[ -s "$HOME/.nvm/nvm.sh" ]]; then
|
|
|
|
source "$HOME/.nvm/nvm.sh"
|
2014-10-13 15:57:20 +00:00
|
|
|
|
|
|
|
# Load package manager installed NVM into the shell session.
|
|
|
|
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nvm 2>/dev/null)" ]]; then
|
|
|
|
source $(brew --prefix nvm)/nvm.sh
|
2012-12-13 15:10:55 +00:00
|
|
|
fi
|
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
|
|
|
if (( ! $+commands[node] )); then
|
2012-07-04 01:38:56 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Load NPM completion.
|
|
|
|
if (( $+commands[npm] )); then
|
|
|
|
cache_file="${0:h}/cache.zsh"
|
2012-07-04 01:38:56 +00:00
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
if [[ "$commands[npm]" -nt "$cache_file" || ! -s "$cache_file" ]]; then
|
|
|
|
# npm is slow; cache its output.
|
|
|
|
npm completion >! "$cache_file" 2> /dev/null
|
|
|
|
fi
|
2012-07-04 01:38:56 +00:00
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
source "$cache_file"
|
2012-07-04 01:38:56 +00:00
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
unset cache_file
|
|
|
|
fi
|