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
fix!: change configuration parameter for buildTarget
BREAKING CHANGE, the parameter configuration is migrated to buildTarget.
Just change --configuration for --build-target on the command line and on the configuration file configuration for buildTarget
Copy file name to clipboardExpand all lines: src/deploy/schema.json
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,14 @@
3
3
"title": "schema",
4
4
"description": "Publish your angular packages to npm by just run `ng deploy`",
5
5
"properties": {
6
-
"configuration": {
6
+
"buildTarget": {
7
7
"type": "string",
8
-
"description": "This is a proposal from RFC #1. --- A named build target, as specified in the `configurations` section of angular.json. Each named target is accompanied by a configuration of option defaults for that target. Same as `ng build --configuration=XXX`.",
9
-
"alias": "c"
8
+
"description": "A named build target, as specified in the `configurations` section of workspace/angular.json. Each named target is accompanied by a configuration of option defaults for that target. This is equivalent to calling the command `[nx|ng] build --configuration=XXX`."
10
9
},
11
10
"noBuild": {
12
11
"type": "boolean",
13
12
"default": false,
14
-
"description": "This is a proposal from RFC #1. --- Skip build process during deployment."
13
+
"description": "Skip build process during deployment."
0 commit comments