Skip to content

Commit a35ec17

Browse files
committed
refactor(@angular-devkit/build-angular): remove experimental warning when using esbuild based builder
This is no longer experimental.
1 parent e41e201 commit a35ec17

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

packages/angular_devkit/build_angular/src/builders/application/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,6 @@ export function buildApplication(
6969
assetFiles?: { source: string; destination: string }[];
7070
}
7171
> {
72-
context.logger.warn(
73-
'The application builder is currently in developer preview and is not yet recommended for production use.',
74-
);
75-
7672
return buildApplicationInternal(options, context);
7773
}
7874

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ const UNSUPPORTED_OPTIONS: Array<keyof BrowserBuilderOptions> = [
3434
];
3535

3636
export function logBuilderStatusWarnings(options: BrowserBuilderOptions, context: BuilderContext) {
37-
context.logger.warn(
38-
`The esbuild-based browser application builder ('browser-esbuild') is currently in developer preview` +
39-
' and is not yet recommended for production use.' +
40-
' For additional information, please see https://angular.io/guide/esbuild',
41-
);
42-
4337
// Validate supported options
4438
for (const unsupportedOption of UNSUPPORTED_OPTIONS) {
4539
const value = (options as unknown as BrowserBuilderOptions)[unsupportedOption];

0 commit comments

Comments
 (0)