https://github.com/angular/angular
Raw File
Tip revision: d1f7900eeb61f28d9271bc7ef8f64c35df2a474b authored by Martin Probst on 22 June 2015, 16:45:53 UTC
docs: consolidate clang-format docs.
Tip revision: d1f7900
build_js.sh
#!/bin/bash
set -e

echo =============================================================================
# go to project dir
SCRIPT_DIR=$(dirname $0)
# this is needed because we're running JS tests in Dartium too
source $SCRIPT_DIR/env_dart.sh
cd $SCRIPT_DIR/../..

./node_modules/.bin/gulp build.js
./node_modules/.bin/gulp docs
back to top