UNPKG

702 BJSONView 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 "required": [
24 ]
25 },
26 {
27 "$ref": "./definitions.json#/definitions/base"
28 }
29 ]
30}