aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh8
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;