2016-04-28 20:50:03 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e -o pipefail
|
|
|
|
|
|
|
|
cd `dirname $0`
|
2016-05-02 01:50:37 -04:00
|
|
|
gulp lint
|
|
|
|
gulp check-format
|
2016-04-28 20:50:03 -04:00
|
|
|
export NODE_PATH=$NODE_PATH:$(pwd)/dist/all
|
|
|
|
./build.sh;
|
|
|
|
$(npm bin)/tsc -p tools
|
2016-06-02 14:33:53 -04:00
|
|
|
$(npm bin)/tsc -p tools/compiler-cli/src
|
|
|
|
# $(npm bin)/tsc -p tools/compiler-cli/test
|
2016-04-28 20:50:03 -04:00
|
|
|
node dist/tools/tsc-watch/ node
|
|
|
|
|
|
|
|
## rebuild since codegen has overwritten some files.
|
|
|
|
$(npm bin)/tsc -p modules/tsconfig.json
|
|
|
|
$(npm bin)/karma start karma-js.conf.js --single-run
|