UNPKG

756 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/schema",
3 "$id": "ng-cli://commands/build.json",
4 "description": "Compiles an Angular app into an output directory named dist/ at the given output path. Must be executed from within a workspace directory.",
5 "$longDescription": "./build-long.md",
6
7 "$aliases": [ "b" ],
8 "$scope": "in",
9 "$type": "architect",
10 "$impl": "./build-impl#BuildCommand",
11
12 "allOf": [
13 { "$ref": "./definitions.json#/definitions/architect" },
14 { "$ref": "./definitions.json#/definitions/base" },
15 {
16 "type": "object",
17 "properties": {
18 "buildEventLog": {
19 "type": "string",
20 "description": "**EXPERIMENTAL** Output file path for Build Event Protocol events"
21 }
22 }
23 }
24 ]
25}