UNPKG

1 kBJSONView Raw
1{
2 "$schema": "http://json-schema.org/schema",
3 "$id": "ng-cli://commands/run.json",
4 "description": "Runs an Architect target with an optional custom builder configuration defined in your project.",
5 "$longDescription": "./run-long.md",
6
7 "$aliases": [],
8 "$scope": "in",
9 "$type": "architect",
10 "$impl": "./run-impl#RunCommand",
11
12 "type": "object",
13 "allOf": [
14 {
15 "properties": {
16 "target": {
17 "type": "string",
18 "description": "The Architect target to run.",
19 "$default": {
20 "$source": "argv",
21 "index": 0
22 }
23 },
24 "configuration": {
25 "description": "A named builder configuration, defined in the \"configurations\" section of angular.json.\nThe builder uses the named configuration to run the given target.",
26 "type": "string",
27 "aliases": [ "c" ]
28 }
29 },
30 "required": [
31 ]
32 },
33 {
34 "$ref": "./definitions.json#/definitions/base"
35 }
36 ]
37}