mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 19:13:34 +08:00
When using Sass files with module import references in the esbuild-based browser application builder, the module resolution attempts will now be cached in memory. This caching is only local to each entry Sass file currently. However, this may be expanded to encompass all Sass entries within a build in the future. In addition to caching the entire resolution attempt, individual package root resolution is also cached for deep import attempts. This is useful for packages (such as `@material/*`) which deep import to multiple different files in the same package. With this change combined with the previous lexer change, package managers (pnpm & Yarn PnP) that require workarounds for functioning resolution will now perform at an equivalent level to other package managers.
@angular-devkit/build-angular
This package contains Architect builders used to build and test Angular applications and libraries.
Builders
Name | Description |
---|---|
app-shell | Build an Angular App shell. |
browser | Build an Angular application targeting a browser environment. |
dev-server | A development server that provides live reloading. |
extract-i18n | Extract i18n messages from an Angular application. |
karma | Execute unit tests using Karma test runner. |
ng-packagr | Build and package an Angular library in Angular Package Format (APF) format using ng-packagr. |
server | Build an Angular application targeting a Node.js environment. |
protractor | Deprecated - Run end-to-end tests using Protractor framework. |
Disclaimer
While the builders when executed via the Angular CLI and their associated options are considered stable, the programmatic APIs are not considered officially supported and are not subject to the breaking change guarantees of SemVer.