https://github.com/angular/angular
Raw File
Tip revision: c194f6695d3a00330ddfbefdc3ba393b0dce0dab authored by Jeremy Elbourn on 18 March 2016, 21:35:40 UTC
chore: bump version to beta.11 w/ changelog
Tip revision: c194f66
build_dart.sh
#!/bin/bash
set -ex

echo =============================================================================
# go to project dir
SCRIPT_DIR=$(dirname $0)
source $SCRIPT_DIR/env_dart.sh
cd $SCRIPT_DIR/../..

./node_modules/.bin/gulp build.js.cjs build.dart benchpress.bundle

pub install
back to top