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:
Joey Perrott 2020-03-03 10:22:06 -08:00 committed by atscott
parent 2c41bb8490
commit ed44073a58
1 changed files with 1 additions and 0 deletions

View File

@ -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",