You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(@angular-devkit/build-angular): amend polyfills option in all builders to support an array of module specifiers
This is the ground work to be able to remove the `polyfills.ts` file which today is primarily used to add `zone.js`.
Usage examples:
```js
polyfills: ['zone.js'],
polyfills: ['zone.js', 'zone.js/testing', 'src/polyfills.ts'],
```
Copy file name to clipboardexpand all lines: packages/angular_devkit/build_angular/src/builders/browser-esbuild/schema.json
+16-2
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,22 @@
17
17
"description": "The full path for the main entry point to the app, relative to the current workspace."
18
18
},
19
19
"polyfills": {
20
-
"type": "string",
21
-
"description": "The full path for the polyfills file, relative to the current workspace."
20
+
"description": "Polyfills to be included in the build.",
21
+
"oneOf": [
22
+
{
23
+
"type": "array",
24
+
"description": "A list of polyfills to include in the build. Can be a full path for a file, relative to the current workspace or module specifier. Example: 'zone.js'.",
25
+
"items": {
26
+
"type": "string",
27
+
"uniqueItems": true
28
+
},
29
+
"default": []
30
+
},
31
+
{
32
+
"type": "string",
33
+
"description": "The full path for the polyfills file, relative to the current workspace or a module specifier. Example: 'zone.js'."
Copy file name to clipboardexpand all lines: packages/angular_devkit/build_angular/src/builders/browser/schema.json
+16-2
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,22 @@
17
17
"description": "The full path for the main entry point to the app, relative to the current workspace."
18
18
},
19
19
"polyfills": {
20
-
"type": "string",
21
-
"description": "The full path for the polyfills file, relative to the current workspace."
20
+
"description": "Polyfills to be included in the build.",
21
+
"oneOf": [
22
+
{
23
+
"type": "array",
24
+
"description": "A list of polyfills to include in the build. Can be a full path for a file, relative to the current workspace or module specifier. Example: 'zone.js'.",
25
+
"items": {
26
+
"type": "string",
27
+
"uniqueItems": true
28
+
},
29
+
"default": []
30
+
},
31
+
{
32
+
"type": "string",
33
+
"description": "The full path for the polyfills file, relative to the current workspace or a module specifier. Example: 'zone.js'."
Copy file name to clipboardexpand all lines: packages/angular_devkit/build_angular/src/builders/karma/schema.json
+16-2
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,22 @@
17
17
"description": "The name of the Karma configuration file."
18
18
},
19
19
"polyfills": {
20
-
"type": "string",
21
-
"description": "The name of the polyfills file."
20
+
"description": "Polyfills to be included in the build.",
21
+
"oneOf": [
22
+
{
23
+
"type": "array",
24
+
"description": "A list of polyfills to include in the build. Can be a full path for a file, relative to the current workspace or module specifier. Example: 'zone.js'.",
25
+
"items": {
26
+
"type": "string",
27
+
"uniqueItems": true
28
+
},
29
+
"default": []
30
+
},
31
+
{
32
+
"type": "string",
33
+
"description": "The full path for the polyfills file, relative to the current workspace or a module specifier. Example: 'zone.js'."
0 commit comments