alias for installing npm packages from cache

This commit is contained in:
Matthias Kretschmann 2015-06-04 20:34:31 +02:00
parent 2efc5bdd6c
commit 6a50a1dbe9
1 changed files with 5 additions and 1 deletions

View File

@ -31,4 +31,8 @@ alias emptytrash="sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo
# Show/hide hidden files in Finder
alias show="defaults write com.apple.Finder AppleShowAllFiles -bool TRUE && killall Finder"
alias hide="defaults write com.apple.Finder AppleShowAllFiles -bool FALSE && killall Finder"
alias hide="defaults write com.apple.Finder AppleShowAllFiles -bool FALSE && killall Finder"
# install npm packages from the cache
# ht: http://soledadpenades.com/2015/05/31/npmoffline-installing-npm-packages-from-the-cache/
alias npmoffline="npm --cache-min 9999999 "