Skip to content

Commit

Permalink
refactor(@angular-devkit/build-angular): remove experimental warning …
Browse files Browse the repository at this point in the history
…when using esbuild based builder

This is no longer experimental.
  • Loading branch information
alan-agius4 committed Sep 13, 2023
1 parent e41e201 commit a35ec17
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,6 @@ export function buildApplication(
assetFiles?: { source: string; destination: string }[];
}
> {
context.logger.warn(
'The application builder is currently in developer preview and is not yet recommended for production use.',
);

return buildApplicationInternal(options, context);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ const UNSUPPORTED_OPTIONS: Array<keyof BrowserBuilderOptions> = [
];

export function logBuilderStatusWarnings(options: BrowserBuilderOptions, context: BuilderContext) {
context.logger.warn(
`The esbuild-based browser application builder ('browser-esbuild') is currently in developer preview` +
' and is not yet recommended for production use.' +
' For additional information, please see https://angular.io/guide/esbuild',
);

// Validate supported options
for (const unsupportedOption of UNSUPPORTED_OPTIONS) {
const value = (options as unknown as BrowserBuilderOptions)[unsupportedOption];
Expand Down

0 comments on commit a35ec17

Please sign in to comment.