1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 22:02:39 +02:00

docs(angular): add cli builders content (#6893)

This commit is contained in:
J. Degand
2024-09-01 00:31:26 -04:00
committed by GitHub
parent 45a28405be
commit 4ede70ab86

View File

@@ -1 +1,9 @@
# CLI Builders
# CLI Builders
A number of Angular CLI commands run a complex process on your code, such as building, testing, or serving your application. The commands use an internal tool called `Architect` to run CLI builders, which invoke another tool (bundler, test runner, server) to accomplish the desired task. Custom builders can perform an entirely new task or to change which third-party tool is used by an existing command.
Visit the following resources to learn more:
- [@official@Angular Official Docs - CLI Builders](https://angular.dev/tools/cli/cli-builder)
- [@video@Angular Builders Creating Custom Builder from Scratch](https://www.youtube.com/watch?v=QbDkDLnXAZE)
- [@opensource@Angular Builders](https://github.com/just-jeb/angular-builders)