File tree Expand file tree Collapse file tree 2 files changed +0
-10
lines changed
packages/angular_devkit/build_angular/src/builders Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -34,12 +34,6 @@ const UNSUPPORTED_OPTIONS: Array<keyof BrowserBuilderOptions> = [
3434] ;
3535
3636export 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 ] ;
You can’t perform that action at this time.
0 commit comments