-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuilders.json
29 lines (29 loc) · 1010 Bytes
/
builders.json
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
26
27
28
29
{
"builders": {
"application": {
"implementation": "./src/builders/application/index",
"schema": "./src/builders/application/schema.json",
"description": "Build an application."
},
"dev-server": {
"implementation": "./src/builders/dev-server/index",
"schema": "./src/builders/dev-server/schema.json",
"description": "Execute a development server for an application."
},
"extract-i18n": {
"implementation": "./src/builders/extract-i18n/index",
"schema": "./src/builders/extract-i18n/schema.json",
"description": "Extract i18n messages from an application."
},
"karma": {
"implementation": "./src/builders/karma",
"schema": "./src/builders/karma/schema.json",
"description": "Run Karma unit tests."
},
"ng-packagr": {
"implementation": "./src/builders/ng-packagr/index",
"schema": "./src/builders/ng-packagr/schema.json",
"description": "Build a library with ng-packagr."
}
}
}