From 681741cd13356a0be2ea7e149f4ff854fd592a69 Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Mon, 11 May 2020 06:06:16 -0400 Subject: [PATCH] docs: minor typo fix in the bazel documentation (#37043) This commit fixes a minor typo issue within the bazel documentation and removes unnecessary spacing. PR Close #37043 --- docs/BAZEL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/BAZEL.md b/docs/BAZEL.md index f6421d9739..4a2784ca7e 100644 --- a/docs/BAZEL.md +++ b/docs/BAZEL.md @@ -64,7 +64,7 @@ See also: [`//.bazelrc`](https://github.com/angular/angular/blob/master/.bazelrc - `--config=debug`: build and launch in debug mode (see [debugging](#debugging) instructions below) - `--test_arg=--node_options=--inspect=9228`: change the inspector port. - `--config=ivy` Enables ivy mode if present, otherwise ViewEngine is used. This switches which compiler is used (ngc or ngtsc) -- `--config=view-engine` Enables ViewEngine mode if present, currentl this the default mode. This switches which compiler is used (ngc or ngtsc) +- `--config=view-engine` Enables ViewEngine mode if present, currently this the default mode. This switches which compiler is used (ngc or ngtsc) - `--test_tag_filters=`: filter tests down to tags defined in the `tag` config of your rules in any given `BUILD.bazel`. - `no-ivy-aot`: Useful for excluding build and test targets that are not meant to be executed in Ivy AOT mode (`--config=ivy`). - `ivy-only`: Useful for excluding all Ivy build and tests targets with `--config=view-engine`. @@ -203,7 +203,7 @@ yarn bazel analyze-profile filename_name.profile This will show the phase summary, individual phase information and critical path. -You can also list all individual tasks and the time they took using `--task_tree`. +You can also list all individual tasks and the time they took using `--task_tree`. ``` yarn bazel analyze-profile filename_name.profile --task_tree ".*" ```