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
The `browserTarget` option has been removed as part of the refactoring process. This option was part of a private API and is no longer used. Projects relying on this option should migrate to using the `buildTarget` option.
BREAKING CHANGE: The `browserTarget` option has been removed from the DevServer and ExtractI18n builders. `buildTarget` is to be used instead.
Copy file name to clipboardexpand all lines: packages/angular_devkit/build_angular/src/builders/dev-server/schema.json
+1-7
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,6 @@
4
4
"description": "Dev Server target options for Build Facade.",
5
5
"type": "object",
6
6
"properties": {
7
-
"browserTarget": {
8
-
"type": "string",
9
-
"description": "A browser builder target to serve in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
10
-
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$",
11
-
"x-deprecated": "Use 'buildTarget' instead."
12
-
},
13
7
"buildTarget": {
14
8
"type": "string",
15
9
"description": "A build builder target to serve in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
Copy file name to clipboardexpand all lines: packages/angular_devkit/build_angular/src/builders/dev-server/tests/behavior/build-inline-critical-css_spec.ts
Copy file name to clipboardexpand all lines: packages/angular_devkit/build_angular/src/builders/dev-server/tests/behavior/serve-live-reload-proxies_spec.ts
Copy file name to clipboardexpand all lines: packages/angular_devkit/build_angular/src/builders/extract-i18n/schema.json
-6
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,6 @@
4
4
"description": "Extract i18n target options for Build Facade.",
5
5
"type": "object",
6
6
"properties": {
7
-
"browserTarget": {
8
-
"type": "string",
9
-
"description": "A browser builder target to extract i18n messages in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
10
-
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$",
11
-
"x-deprecated": "Use 'buildTarget' instead."
12
-
},
13
7
"buildTarget": {
14
8
"type": "string",
15
9
"description": "A builder target to extract i18n messages in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
0 commit comments