UNPKG

1.01 kBJSONView Raw
1{
2 "$schema": "http://json-schema.org/schema",
3 "$id": "ng-cli://commands/deploy.json",
4 "description": "Invokes the deploy builder for a specified project or for the default project in the workspace.",
5 "$longDescription": "./deploy-long.md",
6
7 "$scope": "in",
8 "$type": "architect",
9 "$impl": "./deploy-impl#DeployCommand",
10
11 "allOf": [
12 {
13 "properties": {
14 "project": {
15 "type": "string",
16 "description": "The name of the project to deploy.",
17 "$default": {
18 "$source": "argv",
19 "index": 0
20 }
21 }
22 },
23 "configuration": {
24 "description": "A named build target, as specified in the \"configurations\" section of angular.json.\nEach named target is accompanied by a configuration of option defaults for that target.",
25 "type": "string",
26 "aliases": [
27 "c"
28 ]
29 },
30 "required": [
31 ]
32 },
33 {
34 "$ref": "./definitions.json#/definitions/base"
35 }
36 ]
37}