https://github.com/angular/angular
Raw File
Tip revision: 85e95cc32ba4e7d1093f236f3f2bdec508e481d7 authored by Matias Niemelä on 28 October 2017, 06:31:35 UTC
docs: add changelog for 5.0.0-rc.8
Tip revision: 85e95cc
.bazelrc
# Make compilation fast, by keeping a few copies of the compilers
# running as daemons, and cache SourceFile AST's to reduce parse time.
build --strategy=TypeScriptCompile=worker
build --strategy=AngularTemplateCompile=worker

# Don't create bazel-* symlinks in the WORKSPACE directory.
# These require .gitignore and may scare users.
# Also, it's a workaround for https://github.com/bazelbuild/rules_typescript/issues/12
# which affects the common case of having `tsconfig.json` in the WORKSPACE directory.
#
# Instead, you should run `bazel info bazel-bin` to find out where the outputs went.
build --symlink_prefix=/

# Performance: avoid stat'ing input files
build --watchfs

# Don't print all the .d.ts output locations after builds
build --show_result=0
back to top