mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This allows angular's build to depend on some extensions, but not on code generation, and breaks a cycle in the angular build We now merge ts-metadata-collector into tsc-wrapped and stop publishing the former.
19 lines
409 B
Bash
Executable file
19 lines
409 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
|
|
|
|
node dist/tools/tsc-wrapped/src/main -p modules/tsconfig.json
|
|
|
|
# Compile the compiler_cli integration tests
|
|
node dist/all/@angular/compiler_cli/src/main -p modules/@angular/compiler_cli/integrationtest
|
|
|
|
echo 'travis_fold:end:BUILD'
|