forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.json
More file actions
25 lines (23 loc) · 756 Bytes
/
Copy pathbuild.json
File metadata and controls
25 lines (23 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"$schema": "http://json-schema.org/schema",
"$id": "ng-cli://commands/build.json",
"description": "Compiles an Angular app into an output directory named dist/ at the given output path. Must be executed from within a workspace directory.",
"$longDescription": "./build-long.md",
"$aliases": [ "b" ],
"$scope": "in",
"$type": "architect",
"$impl": "./build-impl#BuildCommand",
"allOf": [
{ "$ref": "./definitions.json#/definitions/architect" },
{ "$ref": "./definitions.json#/definitions/base" },
{
"type": "object",
"properties": {
"buildEventLog": {
"type": "string",
"description": "**EXPERIMENTAL** Output file path for Build Event Protocol events"
}
}
}
]
}