2015-01-08 17:20:05 -05:00
|
|
|
#!/bin/bash
|
2015-11-05 11:20:13 -05:00
|
|
|
set -ex
|
2015-01-08 17:20:05 -05:00
|
|
|
|
|
|
|
echo =============================================================================
|
|
|
|
# go to project dir
|
|
|
|
SCRIPT_DIR=$(dirname $0)
|
2015-02-13 17:59:29 -05:00
|
|
|
# this is needed because we're running JS tests in Dartium too
|
2015-01-08 17:20:05 -05:00
|
|
|
source $SCRIPT_DIR/env_dart.sh
|
|
|
|
cd $SCRIPT_DIR/../..
|
|
|
|
|
2015-12-29 20:01:10 -05:00
|
|
|
node --max-old-space-size=2000 ./node_modules/.bin/gulp build.js --useBundles
|