2012-12-13 15:10:55 +00:00
|
|
|
#
|
|
|
|
# Exposes information about the Node.js environment via the $node_info
|
|
|
|
# associative array.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Zeh Rizzatti <zehrizzatti@gmail.com>
|
|
|
|
#
|
|
|
|
|
2017-07-06 23:01:26 +00:00
|
|
|
# function node-info {
|
|
|
|
|
2012-12-13 15:10:55 +00:00
|
|
|
local version
|
|
|
|
local version_format
|
|
|
|
local version_formatted
|
|
|
|
|
|
|
|
unset node_info
|
|
|
|
typeset -gA node_info
|
|
|
|
|
|
|
|
if (( $+functions[nvm_version] )); then
|
|
|
|
version="${$(nvm_version)#v}"
|
2017-03-16 10:12:18 +00:00
|
|
|
elif (( $+commands[nodenv] )); then
|
|
|
|
version="${${$(nodenv version)#v}[(w)0]}"
|
2012-12-13 15:10:55 +00:00
|
|
|
fi
|
|
|
|
|
2014-10-19 10:21:54 +00:00
|
|
|
if [[ "$version" != (none|) ]]; then
|
2012-12-13 15:10:55 +00:00
|
|
|
zstyle -s ':prezto:module:node:info:version' format 'version_format'
|
|
|
|
zformat -f version_formatted "$version_format" "v:$version"
|
|
|
|
node_info[version]="$version_formatted"
|
|
|
|
fi
|
2017-07-06 23:01:26 +00:00
|
|
|
|
|
|
|
# }
|