build(zone.js): sets rollup_bundle to use the --silent flag (#35835)
Using the --silent flag prevents the spammy logging messages in the bazel execution logs. ``` INFO: From Bundling JavaScript packages/zone.js/dist/zone-rollup.umd.js [rollup]: bazel-out/k8-fastbuild/bin/packages/zone.js/lib/browser/rollup-legacy-main.mjs → bazel-out/k8-fastbuild/bin/packages/zone.js/dist/zone-rollup.umd.js... created bazel-out/k8-fastbuild/bin/packages/zone.js/dist/zone-rollup.umd.js in 736ms ``` PR Close #35835
This commit is contained in:
parent
2c41bb8490
commit
ed44073a58
|
@ -8,6 +8,7 @@ def zone_rollup_bundle(config_file, bundles):
|
|||
name = b[0] + "-rollup",
|
||||
config_file = config_file,
|
||||
entry_point = b[1] + ".ts",
|
||||
silent = True,
|
||||
sourcemap = "false",
|
||||
deps = [
|
||||
"//packages/zone.js/lib",
|
||||
|
|
Loading…
Reference in New Issue