mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 15:02:11 +08:00
When setting `"clearScreen": true` to the appliction builder during rebuilds the terminimal screen will be cleaned. ```json { "projects": { "my-app": { "projectType": "application", "root": "", "sourceRoot": "src", "architect": { "build": { "builder": "@angular-devkit/build-angular:application", "options": { "clearScreen": true } } } } } } ``` Closes #25699