File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
packages/@angular/cli/commands Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ export const baseBuildCommandOptions: any = [
163163 name : 'build-optimizer' ,
164164 type : Boolean ,
165165 default : false ,
166- aliases : [ 'bo' ] ,
167166 description : '(Experimental) Enables @angular-devkit/build-optimizer '
168167 + 'optimizations when using `--aot`.'
169168 } ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { expectToFail } from '../../utils/utils';
44
55
66export default function ( ) {
7- return ng ( 'build' , '--aot' , '--bo ' )
7+ return ng ( 'build' , '--aot' , '--build-optimizer ' )
88 . then ( ( ) => expectToFail ( ( ) => expectFileToExist ( 'dist/vendor.js' ) ) )
99 . then ( ( ) => expectToFail ( ( ) => expectFileToMatch ( 'dist/main.js' , / \. d e c o r a t o r s = / ) ) ) ;
1010}
You can’t perform that action at this time.
0 commit comments