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
This commit is contained in:
Sonu Kapoor 2020-05-11 06:06:16 -04:00 committed by Misko Hevery
parent 8fe532e593
commit 681741cd13
1 changed files with 2 additions and 2 deletions

View File

@ -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) - `--config=debug`: build and launch in debug mode (see [debugging](#debugging) instructions below)
- `--test_arg=--node_options=--inspect=9228`: change the inspector port. - `--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=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=<tag>`: filter tests down to tags defined in the `tag` config of your rules in any given `BUILD.bazel`. - `--test_tag_filters=<tag>`: 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`). - `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`. - `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. 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 ".*" yarn bazel analyze-profile filename_name.profile --task_tree ".*"
``` ```