Skip to content

Commit

Permalink
perf(@angular-devkit/build-angular): disable `showCircularDependencie…
Browse files Browse the repository at this point in the history
…s` 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`.
  • Loading branch information
alan-agius4 committed Mar 16, 2021
1 parent cc10302 commit 00ff390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@
"showCircularDependencies": {
"type": "boolean",
"description": "Show circular dependency warnings on builds.",
"default": true
"default": false
},
"buildOptimizer": {
"type": "boolean",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
"showCircularDependencies": {
"type": "boolean",
"description": "Show circular dependency warnings on builds.",
"default": true
"default": false
},
"namedChunks": {
"type": "boolean",
Expand Down

0 comments on commit 00ff390

Please sign in to comment.