mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 02:24:10 +08:00
All Angular builders are now located within one subdirectory of the `src` directory. This organization provides better discovery of the builders and will allow builder specific code to be stored in a single area.
46 lines
1.6 KiB
JSON
46 lines
1.6 KiB
JSON
{
|
|
"$schema": "../architect/src/builders-schema.json",
|
|
"builders": {
|
|
"app-shell": {
|
|
"implementation": "./src/builders/app-shell",
|
|
"schema": "./src/builders/app-shell/schema.json",
|
|
"description": "Build a server application and a browser application, then render the index.html and use it for the browser output."
|
|
},
|
|
"browser": {
|
|
"implementation": "./src/builders/browser",
|
|
"schema": "./src/builders/browser/schema.json",
|
|
"description": "Build a browser application."
|
|
},
|
|
"dev-server": {
|
|
"implementation": "./src/builders/dev-server",
|
|
"schema": "./src/builders/dev-server/schema.json",
|
|
"description": "Serve a browser application."
|
|
},
|
|
"extract-i18n": {
|
|
"implementation": "./src/builders/extract-i18n",
|
|
"schema": "./src/builders/extract-i18n/schema.json",
|
|
"description": "Extract i18n strings from a browser application."
|
|
},
|
|
"karma": {
|
|
"implementation": "./src/builders/karma",
|
|
"schema": "./src/builders/karma/schema.json",
|
|
"description": "Run Karma unit tests."
|
|
},
|
|
"protractor": {
|
|
"implementation": "./src/builders/protractor",
|
|
"schema": "./src/builders/protractor/schema.json",
|
|
"description": "Run protractor over a dev server."
|
|
},
|
|
"server": {
|
|
"implementation": "./src/builders/server",
|
|
"schema": "./src/builders/server/schema.json",
|
|
"description": "Build a server Angular application."
|
|
},
|
|
"ng-packagr": {
|
|
"implementation": "./src/builders/ng-packagr",
|
|
"schema": "./src/builders/ng-packagr/schema.json",
|
|
"description": "Build a library with ng-packagr."
|
|
}
|
|
}
|
|
}
|