Skip to content

Commit 00ff390

Browse files
committed
perf(@angular-devkit/build-angular): disable showCircularDependencies by default
Change the default of this flag to disabled by default as this is a caused of rebuild performance degradation for large projects. BREAKING CHANGE The server and browser builder `showCircularDependencies` option default value has been changed from `true` to `false`.
1 parent cc10302 commit 00ff390

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/angular_devkit/build_angular/src/browser/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@
290290
"showCircularDependencies": {
291291
"type": "boolean",
292292
"description": "Show circular dependency warnings on builds.",
293-
"default": true
293+
"default": false
294294
},
295295
"buildOptimizer": {
296296
"type": "boolean",

packages/angular_devkit/build_angular/src/server/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
"showCircularDependencies": {
188188
"type": "boolean",
189189
"description": "Show circular dependency warnings on builds.",
190-
"default": true
190+
"default": false
191191
},
192192
"namedChunks": {
193193
"type": "boolean",

0 commit comments

Comments
 (0)