Skip to content

Commit 74060de

Browse files
committed
fix(@angular-devkit/build-angular): fix extractLicenses default
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 0cfbdbc commit 74060de

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
@@ -171,8 +171,8 @@
171171
},
172172
"extractLicenses": {
173173
"type": "boolean",
174-
"description": "Extract all licenses in a separate file, in the case of production builds only.",
175-
"default": true
174+
"description": "Extract all licenses in a separate file.",
175+
"default": false
176176
},
177177
"showCircularDependencies": {
178178
"type": "boolean",

0 commit comments

Comments
 (0)