Skip to content

Commit d28ba8a

Browse files
committed
fix(@angular-devkit/build-angular): remove browser-esbuild usage warning
To avoid potential confusion when updating to v17, the usage warning as been removed from the `browser-esbuild` builder. The `browser-esbuild` builder is considered stable and fully supported. This is in addition to the other stable builders: `browser` and `application`. The `browser-esbuild` builder provides similar behavior to the `browser` builder but with the performance improvements of the `application` builder. However, `browser-esbuild` does not have integrated SSR support and will not receive new/future `application` builder options and features. For more details on these builders, please see: https://angular.io/guide/esbuild (cherry picked from commit b2224c5)
1 parent 7b30725 commit d28ba8a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

packages/angular_devkit/build_angular/src/builders/browser-esbuild/builder-status-warnings.ts

-5
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ export function logBuilderStatusWarnings(
2525
options: BrowserBuilderOptions,
2626
{ logger }: BuilderContext,
2727
) {
28-
logger.warn(
29-
`The 'browser-esbuild' builder is a compatibility builder which will be removed in a future major ` +
30-
`version in favor of the 'application' builder.`,
31-
);
32-
3328
// Validate supported options
3429
for (const unsupportedOption of UNSUPPORTED_OPTIONS) {
3530
const value = (options as unknown as BrowserBuilderOptions)[unsupportedOption];

0 commit comments

Comments
 (0)