16 lines
451 B
Bash
Executable File
16 lines
451 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
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
|