add npm package installer
This commit is contained in:
parent
6634ea8da6
commit
d25516c078
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# set up paths and whatnot
|
||||||
|
source $HOME/.profile
|
||||||
|
|
||||||
|
NPM_PKGS="
|
||||||
|
coffee-script
|
||||||
|
"
|
||||||
|
|
||||||
|
for PKG in $NPM_PKGS ; do
|
||||||
|
# -g is okay because "global" prefix is where homebrew
|
||||||
|
# installed npm, i.e. in ~/Library/Homebrew, not actually systemwide
|
||||||
|
npm install -g $PKG
|
||||||
|
done
|
Loading…
Reference in New Issue