mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 17:28:01 +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:
parent
2c1ad5bed1
commit
483447082b
@ -10,6 +10,13 @@ nvm
|
|||||||
[nvm][5] allows for managing multiple, isolated Node.js installations in the
|
[nvm][5] allows for managing multiple, isolated Node.js installations in the
|
||||||
home directory.
|
home directory.
|
||||||
|
|
||||||
|
nodenv
|
||||||
|
------
|
||||||
|
|
||||||
|
[nodenv][6] does one thing well. nodenv is concerned solely with switching
|
||||||
|
Node versions. It's simple and predictable, Just Works, and is rock solid in
|
||||||
|
production. nodenv is forked from the popular [rbenv][7].
|
||||||
|
|
||||||
Functions
|
Functions
|
||||||
---------
|
---------
|
||||||
|
|
||||||
@ -43,3 +50,5 @@ Authors
|
|||||||
[3]: http://nodejs.org/api
|
[3]: http://nodejs.org/api
|
||||||
[4]: https://github.com/sorin-ionescu/prezto/issues
|
[4]: https://github.com/sorin-ionescu/prezto/issues
|
||||||
[5]: https://github.com/creationix/nvm
|
[5]: https://github.com/creationix/nvm
|
||||||
|
[6]: https://github.com/nodenv/nodenv
|
||||||
|
[7]: https://github.com/sstephenson/rbenv
|
||||||
|
@ -15,6 +15,8 @@ typeset -gA node_info
|
|||||||
|
|
||||||
if (( $+functions[nvm_version] )); then
|
if (( $+functions[nvm_version] )); then
|
||||||
version="${$(nvm_version)#v}"
|
version="${$(nvm_version)#v}"
|
||||||
|
elif (( $+commands[nodenv] )); then
|
||||||
|
version="${${$(nodenv version)#v}[(w)0]}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$version" != (none|) ]]; then
|
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
|
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nvm 2>/dev/null)" ]]; then
|
||||||
source $(brew --prefix nvm)/nvm.sh
|
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.
|
# Return if requirements are not found.
|
||||||
elif (( ! $+commands[node] )); then
|
elif (( ! $+commands[node] )); then
|
||||||
return 1
|
return 1
|
||||||
|
Loading…
Reference in New Issue
Block a user