mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-25 00:31:36 +08:00
This should help users who upgrade more easily discover that the builder has been removed and find the resources needed to migrate any existing tests.
77 lines
2.9 KiB
JSON
77 lines
2.9 KiB
JSON
{
|
|
"$schema": "../architect/src/builders-schema.json",
|
|
"builders": {
|
|
"application": "@angular/build:application",
|
|
"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."
|
|
},
|
|
"browser-esbuild": {
|
|
"implementation": "./src/builders/browser-esbuild",
|
|
"schema": "./src/builders/browser-esbuild/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."
|
|
},
|
|
"jest": {
|
|
"implementation": "./src/builders/jest",
|
|
"schema": "./src/builders/jest/schema.json",
|
|
"description": "Run unit tests using Jest."
|
|
},
|
|
"karma": {
|
|
"implementation": "./src/builders/karma",
|
|
"schema": "./src/builders/karma/schema.json",
|
|
"description": "Run Karma unit tests."
|
|
},
|
|
"web-test-runner": {
|
|
"implementation": "./src/builders/web-test-runner",
|
|
"schema": "./src/builders/web-test-runner/schema.json",
|
|
"description": "Run unit tests with Web Test Runner."
|
|
},
|
|
"protractor": {
|
|
"implementation": "./src/builders/protractor-error",
|
|
"schema": "./src/builders/protractor/schema.json",
|
|
"description": "Throw an error that Protractor is end-of-life and no longer supported."
|
|
},
|
|
"private-protractor": {
|
|
"implementation": "./src/builders/protractor",
|
|
"schema": "./src/builders/protractor/schema.json",
|
|
"description": "PRIVATE API - Do not use."
|
|
},
|
|
"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."
|
|
},
|
|
"ssr-dev-server": {
|
|
"implementation": "./src/builders/ssr-dev-server",
|
|
"schema": "./src/builders/ssr-dev-server/schema.json",
|
|
"description": "Serve a universal application."
|
|
},
|
|
"prerender": {
|
|
"implementation": "./src/builders/prerender",
|
|
"schema": "./src/builders/prerender/schema.json",
|
|
"description": "Perform build-time prerendering of chosen routes."
|
|
}
|
|
}
|
|
}
|