2018-05-29 18:35:48 -04:00
|
|
|
# Make TypeScript and Angular compilation fast, by keeping a few copies of the
|
|
|
|
# compiler running as daemons, and cache SourceFile AST's to reduce parse time.
|
|
|
|
build --strategy=TypeScriptCompile=worker
|
|
|
|
build --strategy=AngularTemplateCompile=worker
|
|
|
|
|
|
|
|
test --test_output=errors
|
|
|
|
|
|
|
|
# Workaround https://github.com/bazelbuild/bazel/issues/3645
|
|
|
|
# Limit Bazel to consuming 3072K of RAM
|
|
|
|
build --local_resources=3072,2.0,1.0
|
2018-08-21 04:37:09 -04:00
|
|
|
|
|
|
|
# Use the Angular 6 compiler
|
|
|
|
build --define=compile=legacy
|