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(
287
287
// tslint:disable-next-line: no-big-function
288
288
concatMap ( async buildEvent => {
289
289
const spinner = new Spinner ( ) ;
290
- spinner . enabled = ! ! options . progress ;
290
+ spinner . enabled = options . progress !== false ;
291
291
292
292
const { webpackStats : webpackRawStats , success, emittedFiles = [ ] } = buildEvent ;
293
293
if ( ! webpackRawStats ) {
Original file line number Diff line number Diff line change 185
185
},
186
186
"progress" : {
187
187
"type" : " boolean" ,
188
- "description" : " Log progress to the console while building."
188
+ "description" : " Log progress to the console while building." ,
189
+ "default" : true
189
190
},
190
191
"i18nFile" : {
191
192
"type" : " string" ,
Original file line number Diff line number Diff line change 98
98
},
99
99
"progress" : {
100
100
"type" : " boolean" ,
101
- "description" : " Log progress to the console while building."
101
+ "description" : " Log progress to the console while building." ,
102
+ "default" : true
102
103
},
103
104
"watch" : {
104
105
"type" : " boolean" ,
Original file line number Diff line number Diff line change 117
117
},
118
118
"progress" : {
119
119
"type" : " boolean" ,
120
- "description" : " Log progress to the console while building."
120
+ "description" : " Log progress to the console while building." ,
121
+ "default" : true
121
122
},
122
123
"i18nFile" : {
123
124
"type" : " string" ,
You can’t perform that action at this time.
0 commit comments