This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/node/init.zsh

36 lines
857 B
Bash
Raw Normal View History

2012-01-31 23:37:51 -05:00
#
2012-12-13 10:10:55 -05:00
# Loads the Node Version Manager and enables npm completion.
2012-01-31 23:37:51 -05:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
2012-12-13 10:10:55 -05:00
# Zeh Rizzatti <zehrizzatti@gmail.com>
2012-01-31 23:37:51 -05:00
#
2014-10-13 11:57:20 -04:00
# Load manually installed NVM into the shell session.
2012-12-13 10:10:55 -05:00
if [[ -s "$HOME/.nvm/nvm.sh" ]]; then
source "$HOME/.nvm/nvm.sh"
2014-10-13 11:57:20 -04:00
# Load package manager installed NVM into the shell session.
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nvm 2>/dev/null)" ]]; then
source $(brew --prefix nvm)/nvm.sh
2012-12-13 10:10:55 -05:00
fi
2012-07-23 15:00:44 -04:00
# Return if requirements are not found.
if (( ! $+commands[node] )); then
2012-07-03 21:38:56 -04:00
return 1
fi
2012-07-23 15:00:44 -04:00
# Load NPM completion.
if (( $+commands[npm] )); then
cache_file="${0:h}/cache.zsh"
2012-07-03 21:38:56 -04:00
2012-07-23 15:00:44 -04:00
if [[ "$commands[npm]" -nt "$cache_file" || ! -s "$cache_file" ]]; then
# npm is slow; cache its output.
npm completion >! "$cache_file" 2> /dev/null
fi
2012-07-03 21:38:56 -04:00
2012-07-23 15:00:44 -04:00
source "$cache_file"
2012-07-03 21:38:56 -04:00
2012-07-23 15:00:44 -04:00
unset cache_file
fi