add support for nodenv
This commit is contained in:
parent
f2a826e963
commit
3eaefdb7f0
2 changed files with 10 additions and 0 deletions
|
@ -15,6 +15,8 @@ typeset -gA node_info
|
|||
|
||||
if (( $+functions[nvm_version] )); then
|
||||
version="${$(nvm_version)#v}"
|
||||
elif (( $+commands[nodenv] )); then
|
||||
version="${$(nodenv version)#v}"
|
||||
fi
|
||||
|
||||
if [[ "$version" != (none|) ]]; then
|
||||
|
|
|
@ -14,6 +14,14 @@ 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
|
||||
eval "$($HOME/.nodenv/bin/nodenv init -)"
|
||||
|
||||
# Load package manager installed nodenv into the shell session.
|
||||
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nodenv 2>/dev/null)" ]]; then
|
||||
eval "$($(brew --prefix nodenv)/bin/nodenv init -)"
|
||||
|
||||
# Return if requirements are not found.
|
||||
elif (( ! $+commands[node] )); then
|
||||
return 1
|
||||
|
|
Loading…
Add table
Reference in a new issue