1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-04 09:59:25 +00:00

Add nodenv support to Node.js module

- Implementation from https://github.com/sorin-ionescu/prezto/pull/1001
- Documentation from https://github.com/sorin-ionescu/prezto/pull/1178
This commit is contained in:
Jamie Rolfs
2017-03-16 03:12:18 -07:00
committed by Kaleb Elwert
parent 2c1ad5bed1
commit 483447082b
3 changed files with 19 additions and 0 deletions

View File

@ -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