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(
69
69
assetFiles ?: { source : string ; destination : string } [ ] ;
70
70
}
71
71
> {
72
- context . logger . warn (
73
- 'The application builder is currently in developer preview and is not yet recommended for production use.' ,
74
- ) ;
75
-
76
72
return buildApplicationInternal ( options , context ) ;
77
73
}
78
74
Original file line number Diff line number Diff line change @@ -34,12 +34,6 @@ const UNSUPPORTED_OPTIONS: Array<keyof BrowserBuilderOptions> = [
34
34
] ;
35
35
36
36
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
-
43
37
// Validate supported options
44
38
for ( const unsupportedOption of UNSUPPORTED_OPTIONS ) {
45
39
const value = ( options as unknown as BrowserBuilderOptions ) [ unsupportedOption ] ;
You can’t perform that action at this time.
0 commit comments