docs: fix typos in the `cli-builder` guide (#42386)

PR Close #42386
This commit is contained in:
George Kalpakas 2021-05-27 16:44:14 +03:00 committed by Andrew Kushnir
parent 17d0dd3593
commit b57a1275b2
1 changed files with 5 additions and 5 deletions

View File

@ -119,7 +119,7 @@ In either case, you must provide required inputs, but can allow other inputs to
You define builder inputs in a JSON schema associated with that builder.
The Architect tool collects the resolved input values into an `options` object, and validates their types against the schema before passing them to the builder function.
(The Schematics library does the same kind of validation of user input).
(The Schematics library does the same kind of validation of user input.)
For our example builder, we expect the `options` value to be a `JsonObject` with two keys: a `command` that is a string, and an `args` array of string values.
@ -153,7 +153,7 @@ For more information, see the [JSON schemas website](http://json-schema.org/).
To link our builder implementation with its schema and name, we need to create a *builder definition* file, which we can point to in `package.json`.
Create a file named `builders.json` file that looks like this.
Create a file named `builders.json` that looks like this:
<code-example language="json" header="builders.json">
@ -204,7 +204,7 @@ Targets are defined in the `angular.json` [CLI configuration file](guide/workspa
A target specifies the builder to use, its default options configuration, and named alternative configurations.
The Architect tool uses the target definition to resolve input options for a given run.
The `angular.json` file has a section for each project, and the "architect" section of each project configures targets for builders used by CLI commands such as 'build', 'test', and 'lint'.
The `angular.json` file has a section for each project, and the "architect" section of each project configures targets for builders used by CLI commands such as 'build', 'test', and 'lint'.
By default, for example, the `build` command runs the builder `@angular-devkit/build-angular:browser` to perform the build task, and passes in default option values as specified for the `build` target in `angular.json`.
<code-example language="json" header="angular.json">
@ -276,7 +276,7 @@ For more information see [Workspace Configuration](guide/workspace-config).
You can also invoke a builder directly from another builder or test by calling `BuilderContext.scheduleBuilder()`.
You pass an `options` object directly to the method, and those option values are validated against the schema of the builder without further adjustment.
Only the `BuilderContext.scheduleTarget()` method resolves the configuration and overrides through the `angular.json` file.
Only the `BuilderContext.scheduleTarget()` method resolves the configuration and overrides through the `angular.json` file.
</div>
@ -340,7 +340,7 @@ We need to update the `angular.json` file to add a target for this builder to th
* We'll add a new target section to the "architect" object for our project.
* The target named "touch" uses our builder, which we published to `@example/command-runner`. (See [Publishing your Library](guide/creating-libraries#publishing-your-library))
* The target named "touch" uses our builder, which we published to `@example/command-runner`. (See [Publishing your Library](guide/creating-libraries#publishing-your-library).)
* The options object provides default values for the two inputs that we defined; `command`, which is the Unix command to execute, and `args`, an array that contains the file to operate on.