1
1
# Disable NG CLI TTY mode
2
- test --action_env=NG_FORCE_TTY=false
2
+ build --action_env=NG_FORCE_TTY=false
3
3
4
4
# Make TypeScript compilation fast, by keeping a few copies of the compiler
5
5
# running as daemons, and cache SourceFile AST's to reduce parse time.
@@ -50,6 +50,12 @@ test --incompatible_strict_action_env
50
50
# Enable remote caching of build/action tree
51
51
build --experimental_remote_merkle_tree_cache
52
52
53
+ # Ensure that tags applied in BUILDs propagate to actions
54
+ build --incompatible_allow_tags_propagation
55
+
56
+ # Don't check if output files have been modified
57
+ build --noexperimental_check_output_files
58
+
53
59
# Ensure sandboxing is enabled even for exclusive tests
54
60
test --incompatible_exclusive_test_sandboxed
55
61
@@ -146,6 +152,9 @@ build:remote --google_default_credentials
146
152
# These settings are required for rules_nodejs
147
153
###############################
148
154
155
+ # Fixes use of npm paths with spaces such as some within the puppeteer module
156
+ build --experimental_inprocess_symlink_creation
157
+
149
158
####################################################
150
159
# User bazel configuration
151
160
# NOTE: This needs to be the *last* entry in the config.
@@ -157,4 +166,4 @@ try-import .bazelrc.user
157
166
158
167
# Enable runfiles even on Windows.
159
168
# Architect resolves output files from data files, and this isn't possible without runfile support.
160
- test --enable_runfiles
169
+ build --enable_runfiles
0 commit comments