From 01c95ce5b566d2541fd7b3a4683147f7161bb875 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Tue, 27 Oct 2020 18:05:32 +0200 Subject: [PATCH] docs: fix `yarn bazel` commands to run in `--silent` mode in `BAZEL.md` (#39455) PR Close #39455 --- docs/BAZEL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/BAZEL.md b/docs/BAZEL.md index 40f5334341..63d3c98dcb 100644 --- a/docs/BAZEL.md +++ b/docs/BAZEL.md @@ -120,7 +120,7 @@ Apple+Shift+D on Mac) and click on the green play icon next to the configuration Open `external` directory which contains everything that bazel downloaded while executing the workspace file: ```sh -open $(bazel info output_base)/external +open $(yarn -s bazel info output_base)/external ``` See subcommands that bazel executes (helpful for debugging): @@ -130,7 +130,7 @@ yarn bazel build //packages/core:package -s To debug nodejs_binary executable paths uncomment `find . -name rollup 1>&2` (~ line 96) in ```sh -open $(bazel info output_base)/external/build_bazel_rules_nodejs/internal/node_launcher.sh +open $(yarn -s bazel info output_base)/external/build_bazel_rules_nodejs/internal/node_launcher.sh ``` ## Stamping