2015-06-03 17:22:30 -07:00
|
|
|
#!/bin/bash
|
2015-11-05 08:20:13 -08:00
|
|
|
set -ex
|
2015-06-03 17:22:30 -07:00
|
|
|
|
|
|
|
echo =============================================================================
|
|
|
|
echo EXPERIMENTAL DART BUILD
|
|
|
|
echo =============================================================================
|
|
|
|
|
|
|
|
# go to project dir
|
|
|
|
SCRIPT_DIR=$(dirname $0)
|
|
|
|
source $SCRIPT_DIR/env_dart.sh
|
|
|
|
cd $SCRIPT_DIR/../..
|
|
|
|
|
|
|
|
./node_modules/.bin/gulp build/packages.dart
|
|
|
|
./node_modules/.bin/gulp build/pubspec.dart
|
|
|
|
./node_modules/.bin/gulp build/analyze.ddc.dart
|