diff options
-rwxr-xr-x | bootstrap.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index 802b7f1..fd458b7 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -6,6 +6,10 @@ PREFIX=`pwd`/usr/ NODE_VERSION=0.3.5 +# use full for development +DEV_TOOLS="node-dev jslint" + + # end config ########################### @@ -45,3 +49,7 @@ fi # load development code and compile dependencies npm link src/nodejs/ + +for TOOL in $DEV_TOOLS; do + npm install $TOOL +done; |