File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ describe('Application Schematic', () => {
6565 const prj = config . projects . foo ;
6666 const buildOpt = prj . architect . build . options ;
6767 expect ( buildOpt . buildOptimizer ) . toBeTrue ( ) ;
68- expect ( buildOpt . extractCss ) . toBeTrue ( ) ;
6968 expect ( buildOpt . extractLicenses ) . toBeTrue ( ) ;
7069 expect ( buildOpt . optimization ) . toBeTrue ( ) ;
7170 expect ( buildOpt . statsJson ) . toBeTrue ( ) ;
Original file line number Diff line number Diff line change @@ -100,7 +100,6 @@ function addBuildOptions(project: ProjectDefinition) {
100100 throw new SchematicsException ( "Expected build options to be defined" ) ;
101101 }
102102 buildTarget . options [ 'buildOptimizer' ] = true ;
103- buildTarget . options [ 'extractCss' ] = true ;
104103 buildTarget . options [ 'extractLicenses' ] = true ;
105104 buildTarget . options [ 'optimization' ] = true ;
106105 buildTarget . options [ 'statsJson' ] = true ;
You can’t perform that action at this time.
0 commit comments