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.
|
2017-08-04 17:54:19 +00:00
|
|
|
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nvm 2> /dev/null)" ]]; then
|
2017-07-23 04:42:51 +00:00
|
|
|
source "$(brew --prefix nvm)/nvm.sh"
|
2012-12-13 15:10:55 +00:00
|
|
|
|
2017-03-16 10:12:18 +00:00
|
|
|
# Load manually installed nodenv into the shell session.
|
|
|
|
elif [[ -s "$HOME/.nodenv/bin/nodenv" ]]; then
|
2017-05-02 18:38:19 +00:00
|
|
|
path=("$HOME/.nodenv/bin" $path)
|
2017-04-10 18:15:08 +00:00
|
|
|
eval "$(nodenv init - --no-rehash zsh)"
|
2017-03-16 10:12:18 +00:00
|
|
|
|
|
|
|
# Load package manager installed nodenv into the shell session.
|
2017-04-10 18:15:08 +00:00
|
|
|
elif (( $+commands[nodenv] )); then
|
|
|
|
eval "$(nodenv init - --no-rehash zsh)"
|
2017-03-16 10:12:18 +00:00
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
2015-02-24 20:29:25 +00:00
|
|
|
elif (( ! $+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
|
2017-11-10 19:37:11 +00:00
|
|
|
cache_file="${TMPDIR:-/tmp}/prezto-node-cache.$UID.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
|