Skip to content

Commit c468e76

Browse files
filipesilvavikerman
authored andcommitted
fix(@angular-devkit/build-angular): fix extractLicenses default (#12546)
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.
1 parent fd8cfcb commit c468e76

File tree

1 file changed

+2
-2
lines changed
  • packages/angular_devkit/build_angular/src/browser

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@
170170
},
171171
"extractLicenses": {
172172
"type": "boolean",
173-
"description": "Extract all licenses in a separate file, in the case of production builds only.",
174-
"default": true
173+
"description": "Extract all licenses in a separate file.",
174+
"default": false
175175
},
176176
"showCircularDependencies": {
177177
"type": "boolean",

0 commit comments

Comments
 (0)