|
|
|
@ -14,6 +14,15 @@ if [[ -s "$HOME/.nvm/nvm.sh" ]]; then
|
|
|
|
|
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nvm 2>/dev/null)" ]]; then
|
|
|
|
|
source $(brew --prefix nvm)/nvm.sh
|
|
|
|
|
|
|
|
|
|
# Load manually installed nodenv into the shell session.
|
|
|
|
|
elif [[ -s "$HOME/.nodenv/bin/nodenv" ]]; then
|
|
|
|
|
path=("$HOME/.nodenv/bin" $path)
|
|
|
|
|
eval "$(nodenv init - --no-rehash zsh)"
|
|
|
|
|
|
|
|
|
|
# Load package manager installed nodenv into the shell session.
|
|
|
|
|
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nodenv 2>/dev/null)" ]]; then
|
|
|
|
|
eval "$(nodenv init - --no-rehash zsh)"
|
|
|
|
|
|
|
|
|
|
# Return if requirements are not found.
|
|
|
|
|
elif (( ! $+commands[node] )); then
|
|
|
|
|
return 1
|
|
|
|
|