File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
packages/angular_devkit/build_angular/src Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -287,7 +287,7 @@ export function buildWebpackBrowser(
287287 // tslint:disable-next-line: no-big-function
288288 concatMap ( async buildEvent => {
289289 const spinner = new Spinner ( ) ;
290- spinner . enabled = ! ! options . progress ;
290+ spinner . enabled = options . progress !== false ;
291291
292292 const { webpackStats : webpackRawStats , success, emittedFiles = [ ] } = buildEvent ;
293293 if ( ! webpackRawStats ) {
Original file line number Diff line number Diff line change 185185 },
186186 "progress" : {
187187 "type" : " boolean" ,
188- "description" : " Log progress to the console while building."
188+ "description" : " Log progress to the console while building." ,
189+ "default" : true
189190 },
190191 "i18nFile" : {
191192 "type" : " string" ,
Original file line number Diff line number Diff line change 9898 },
9999 "progress" : {
100100 "type" : " boolean" ,
101- "description" : " Log progress to the console while building."
101+ "description" : " Log progress to the console while building." ,
102+ "default" : true
102103 },
103104 "watch" : {
104105 "type" : " boolean" ,
Original file line number Diff line number Diff line change 117117 },
118118 "progress" : {
119119 "type" : " boolean" ,
120- "description" : " Log progress to the console while building."
120+ "description" : " Log progress to the console while building." ,
121+ "default" : true
121122 },
122123 "i18nFile" : {
123124 "type" : " string" ,
You can’t perform that action at this time.
0 commit comments