prezto_config/modules/node/init.zsh

32 lines
658 B
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
2012-12-13 16:10:55 +01:00
# Loads the Node Version Manager and enables npm completion.
2012-02-01 05:37:51 +01:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
2012-12-13 16:10:55 +01:00
# Zeh Rizzatti <zehrizzatti@gmail.com>
2012-02-01 05:37:51 +01:00
#
2012-12-13 16:10:55 +01:00
# Load NVM into the shell session.
if [[ -s "$HOME/.nvm/nvm.sh" ]]; then
source "$HOME/.nvm/nvm.sh"
fi
2012-07-23 21:00:44 +02:00
# Return if requirements are not found.
if (( ! $+commands[node] )); then
2012-07-04 03:38:56 +02:00
return 1
fi
2012-07-23 21:00:44 +02:00
# Load NPM completion.
if (( $+commands[npm] )); then
cache_file="${0:h}/cache.zsh"
2012-07-04 03:38:56 +02:00
2012-07-23 21:00:44 +02: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-04 03:38:56 +02:00
2012-07-23 21:00:44 +02:00
source "$cache_file"
2012-07-04 03:38:56 +02:00
2012-07-23 21:00:44 +02:00
unset cache_file
fi