|
1 | 1 | { |
2 | | - "$schema": "../node_modules/@angular-devkit/schematics/collection-schema.json", |
3 | | - "schematics": { |
4 | | - "ng-add": { |
5 | | - "description": "Add ui schematics library", |
6 | | - "factory": "./ng-add/index#add" |
7 | | - }, |
8 | | - "table": { |
9 | | - "description": "Create a component that displays data with a data-table", |
10 | | - "factory": "./ng-generate/table/index", |
11 | | - "schema": "./ng-generate/table/schema.json" |
12 | | - }, |
13 | | - "table-prompter": { |
14 | | - "description": "generate custom prompter", |
15 | | - "factory": "./ng-generate/table-prompter/index" |
16 | | - }, |
17 | | - "table-generation": { |
18 | | - "description": "Executes the table generation", |
19 | | - "factory": "./ng-generate/table/index#generate", |
20 | | - "schema": "./ng-generate/table/schema.json" |
21 | | - }, |
22 | | - "i18n": { |
23 | | - "description": "Add i18n strategy to the application", |
24 | | - "factory": "./ng-generate/i18n/index", |
25 | | - "schema": "./ng-generate/i18n/schema.json" |
26 | | - }, |
27 | | - "types": { |
28 | | - "description": "Generate type definitions for an aspect model", |
29 | | - "factory": "./ng-generate/types/index", |
30 | | - "schema": "./ng-generate/types/schema.json" |
| 2 | + "$schema": "../node_modules/@angular-devkit/schematics/collection-schema.json", |
| 3 | + "schematics": { |
| 4 | + "ng-add": { |
| 5 | + "description": "Add ui schematics library", |
| 6 | + "factory": "./ng-add/index#add" |
| 7 | + }, |
| 8 | + "table": { |
| 9 | + "description": "Create a component that displays data with a data-table", |
| 10 | + "factory": "./ng-generate/components/table/index", |
| 11 | + "schema": "./ng-generate/components/table/schema.json" |
| 12 | + }, |
| 13 | + "table-prompter": { |
| 14 | + "description": "generate custom prompter", |
| 15 | + "factory": "./ng-generate/prompter/table/index" |
| 16 | + }, |
| 17 | + "table-generation": { |
| 18 | + "description": "Executes the table generation", |
| 19 | + "factory": "./ng-generate/components/table/index#generateTable", |
| 20 | + "schema": "./ng-generate/components/table/schema.json" |
| 21 | + }, |
| 22 | + "card": { |
| 23 | + "description": "Create a component that displays data with a card", |
| 24 | + "factory": "./ng-generate/components/card/index", |
| 25 | + "schema": "./ng-generate/components/card/schema.json" |
| 26 | + }, |
| 27 | + "card-prompter": { |
| 28 | + "description": "generate custom prompter", |
| 29 | + "factory": "./ng-generate/prompter/card/index" |
| 30 | + }, |
| 31 | + "card-generation": { |
| 32 | + "description": "Executes the card generation", |
| 33 | + "factory": "./ng-generate/components/card/index#generateCard", |
| 34 | + "schema": "./ng-generate/components/card/schema.json" |
| 35 | + }, |
| 36 | + "i18n": { |
| 37 | + "description": "Add i18n strategy to the application", |
| 38 | + "factory": "./ng-generate/i18n/index", |
| 39 | + "schema": "./ng-generate/i18n/schema.json" |
| 40 | + }, |
| 41 | + "types": { |
| 42 | + "description": "Generate type definitions for an aspect model", |
| 43 | + "factory": "./ng-generate/types/index", |
| 44 | + "schema": "./ng-generate/types/schema.json" |
| 45 | + } |
31 | 46 | } |
32 | | - } |
33 | 47 | } |
0 commit comments