We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d318b27 commit 0e40b8cCopy full SHA for 0e40b8c
WORKSPACE
@@ -49,13 +49,18 @@ node_repositories(
49
50
yarn_install(
51
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"],
56
# We add the postinstall patches file, and ngcc main fields update script here so
57
# that Yarn will rerun whenever one of these files has been modified.
58
data = [
59
"//:tools/postinstall/apply-patches.js",
60
"//:tools/postinstall/update-ngcc-main-fields.js",
61
],
62
package_json = "//:package.json",
63
+ quiet = False,
64
yarn_lock = "//:yarn.lock",
65
)
66
0 commit comments