mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Also update docs/peer deps, display errors from running jasmine, use the right location of cjs-jasmine
16 lines
307 B
Bash
Executable file
16 lines
307 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ex -o pipefail
|
|
|
|
echo 'travis_fold:start:BUILD'
|
|
|
|
# Setup environment
|
|
cd `dirname $0`
|
|
source ./env.sh
|
|
cd ../..
|
|
|
|
$(npm bin)/tsc -p ./tools/tsconfig.json
|
|
$(npm bin)/ng2tc -p ./modules/tsconfig.json
|
|
$(npm bin)/tsc -p ./tools/compiler_cli/src/tsconfig.json
|
|
|
|
echo 'travis_fold:end:BUILD'
|