Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): fix extractLicenses default (#12546)
Browse files Browse the repository at this point in the history
It should be false so that it doesn't affect dev builds. The default production config has it set to true already.

Partially address #12432.
  • Loading branch information
filipesilva authored and vikerman committed Oct 10, 2018
1 parent d45bce2 commit 916a616
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/angular_devkit/build_angular/src/browser/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@
},
"extractLicenses": {
"type": "boolean",
"description": "Extract all licenses in a separate file, in the case of production builds only.",
"default": true
"description": "Extract all licenses in a separate file.",
"default": false
},
"showCircularDependencies": {
"type": "boolean",
Expand Down

0 comments on commit 916a616

Please sign in to comment.