File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -49,13 +49,18 @@ node_repositories(
4949
5050yarn_install (
5151 name = "npm" ,
52+ # Redirects Yarn `stdout` output to `stderr`. This ensures that stdout is not accidentally
53+ # polluted when Bazel runs Yarn. Workaround until the upstream fix is available:
54+ # https://github.com/bazelbuild/bazel/pull/10611.
55+ args = ["1>&2" ],
5256 # We add the postinstall patches file, and ngcc main fields update script here so
5357 # that Yarn will rerun whenever one of these files has been modified.
5458 data = [
5559 "//:tools/postinstall/apply-patches.js" ,
5660 "//:tools/postinstall/update-ngcc-main-fields.js" ,
5761 ],
5862 package_json = "//:package.json" ,
63+ quiet = False ,
5964 yarn_lock = "//:yarn.lock" ,
6065)
6166
You can’t perform that action at this time.
0 commit comments