Merge pull request #44 from zzen/patch-1

Added copy-packages command
master
Tim Caswell 2011-08-18 09:35:12 -07:00
commit d5638cb241
1 changed files with 11 additions and 0 deletions

11
nvm.sh
View File

@ -89,6 +89,7 @@ nvm()
echo " nvm sync Update the local cache of available versions" echo " nvm sync Update the local cache of available versions"
echo " nvm alias [<pattern>] Show all aliases beginning with <pattern>" echo " nvm alias [<pattern>] Show all aliases beginning with <pattern>"
echo " nvm alias <name> <version> Set an alias named <name> pointing to <version>" echo " nvm alias <name> <version> Set an alias named <name> pointing to <version>"
echo " nvm copy-packages <version> Install global NPM packages contained in <version> to current version"
echo echo
echo "Example:" echo "Example:"
echo " nvm install v0.4.0 Install a specific version number" echo " nvm install v0.4.0 Install a specific version number"
@ -235,6 +236,16 @@ nvm()
[ "$STABLE" = `nvm_version stable` ] || echo "NEW stable: `nvm_version stable`" [ "$STABLE" = `nvm_version stable` ] || echo "NEW stable: `nvm_version stable`"
[ "$LATEST" = `nvm_version latest` ] || echo "NEW latest: `nvm_version latest`" [ "$LATEST" = `nvm_version latest` ] || echo "NEW latest: `nvm_version latest`"
;; ;;
"copy-packages" )
if [ $# -ne 2 ]; then
nvm help
return
fi
VERSION=`nvm_version $2`
ROOT=`nvm use $VERSION && npm -g root`
INSTALLS=`nvm use $VERSION > /dev/null && npm -g -p ll | grep "$ROOT\/[^/]\+$" | cut -d '/' -f 8 | cut -d ":" -f 2 | grep -v npm | tr "\n" " "`
npm install -g $INSTALLS
;;
"clear-cache" ) "clear-cache" )
rm -f $NVM_DIR/v* 2>/dev/null rm -f $NVM_DIR/v* 2>/dev/null
echo "Cache cleared." echo "Cache cleared."