| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "$schema": "../architect/src/builders-schema.json",
- "builders": {
- "app-shell": {
- "implementation": "./src/app-shell",
- "schema": "./src/app-shell/schema.json",
- "description": "Build a server app and a browser app, then render the index.html and use it for the browser output."
- },
- "browser": {
- "implementation": "./src/browser",
- "schema": "./src/browser/schema.json",
- "description": "Build a browser app."
- },
- "dev-server": {
- "implementation": "./src/dev-server",
- "schema": "./src/dev-server/schema.json",
- "description": "Serve a browser app."
- },
- "extract-i18n": {
- "implementation": "./src/extract-i18n",
- "schema": "./src/extract-i18n/schema.json",
- "description": "Extract i18n strings from a browser app."
- },
- "karma": {
- "implementation": "./src/karma",
- "schema": "./src/karma/schema.json",
- "description": "Run Karma unit tests."
- },
- "protractor": {
- "implementation": "./src/protractor",
- "schema": "./src/protractor/schema.json",
- "description": "Run protractor over a dev server."
- },
- "tslint": {
- "implementation": "./src/tslint",
- "schema": "./src/tslint/schema.json",
- "description": "Run tslint over a TS project."
- },
- "server": {
- "implementation": "./src/server",
- "schema": "./src/server/schema.json",
- "description": "Build a server Angular application."
- }
- }
- }
|