How can you create a custom Angular builder?
- Angular CLI supports custom builders to extend build behavior.
- Create a Node.js package implementing the Builder interface.
- Define builder options and logic in a builders.json.
- Use the custom builder in angular.json for build or serve targets.
Use case: Customized builds, code analysis, or special deployment pipelines.