-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcollection.json
More file actions
155 lines (155 loc) · 4.46 KB
/
collection.json
File metadata and controls
155 lines (155 loc) · 4.46 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"schematics": {
"ng-new": {
"factory": "./ng-new",
"schema": "./ng-new/schema.json",
"description": "Create an Angular workspace.",
"hidden": true
},
"workspace": {
"factory": "./workspace",
"schema": "./workspace/schema.json",
"description": "Create an Angular workspace.",
"hidden": true
},
"service-worker": {
"factory": "./service-worker",
"description": "Initializes a service worker setup.",
"schema": "./service-worker/schema.json"
},
"application": {
"aliases": ["app"],
"factory": "./application",
"schema": "./application/schema.json",
"description": "Create an Angular application."
},
"class": {
"aliases": ["cl"],
"factory": "./class",
"description": "Create a class.",
"schema": "./class/schema.json"
},
"component": {
"aliases": ["c"],
"factory": "./component",
"description": "Create an Angular component.",
"schema": "./component/schema.json"
},
"directive": {
"aliases": ["d"],
"factory": "./directive",
"description": "Create an Angular directive.",
"schema": "./directive/schema.json"
},
"enum": {
"aliases": ["e"],
"factory": "./enum",
"description": "Create an enumeration.",
"schema": "./enum/schema.json"
},
"guard": {
"aliases": ["g"],
"factory": "./guard",
"description": "Create a guard.",
"schema": "./guard/schema.json"
},
"resolver": {
"aliases": ["r"],
"factory": "./resolver",
"description": "Create a resolver.",
"schema": "./resolver/schema.json"
},
"interceptor": {
"factory": "./interceptor",
"description": "Create an interceptor.",
"schema": "./interceptor/schema.json"
},
"interface": {
"aliases": ["i"],
"factory": "./interface",
"description": "Create an interface.",
"schema": "./interface/schema.json"
},
"module": {
"aliases": ["m"],
"factory": "./module",
"description": "Create an Angular module.",
"schema": "./module/schema.json"
},
"pipe": {
"aliases": ["p"],
"factory": "./pipe",
"description": "Create an Angular pipe.",
"schema": "./pipe/schema.json"
},
"service": {
"aliases": ["s"],
"factory": "./service",
"description": "Create an Angular service.",
"schema": "./service/schema.json"
},
"server": {
"factory": "./server",
"description": "Create an Angular server app.",
"schema": "./server/schema.json",
"hidden": true
},
"ssr": {
"factory": "./ssr",
"description": "Adds SSR to an Angular app.",
"schema": "./ssr/schema.json",
"hidden": true
},
"app-shell": {
"factory": "./app-shell",
"description": "Create an application shell.",
"schema": "./app-shell/schema.json"
},
"library": {
"aliases": ["lib"],
"factory": "./library",
"schema": "./library/schema.json",
"description": "Generate a library project for Angular."
},
"web-worker": {
"factory": "./web-worker",
"schema": "./web-worker/schema.json",
"description": "Create a Web Worker."
},
"environments": {
"factory": "./environments",
"schema": "./environments/schema.json",
"description": "Generate project environment files."
},
"config": {
"factory": "./config",
"schema": "./config/schema.json",
"description": "Generates a configuration file."
},
"ai-config": {
"factory": "./ai-config",
"schema": "./ai-config/schema.json",
"description": "Generates an AI tool configuration file."
},
"tailwind": {
"factory": "./tailwind",
"schema": "./tailwind/schema.json",
"hidden": true,
"private": true,
"description": "[INTERNAL] Adds tailwind to a project. Intended for use for ng new/add."
},
"refactor-jasmine-vitest": {
"factory": "./refactor/jasmine-vitest",
"schema": "./refactor/jasmine-vitest/schema.json",
"description": "[EXPERIMENTAL] Refactors Jasmine tests to use Vitest APIs.",
"hidden": true
},
"vitest-browser": {
"factory": "./vitest-browser",
"schema": "./vitest-browser/schema.json",
"hidden": true,
"private": true,
"description": "[INTERNAL] Adds a Vitest browser provider to a project. Intended for use for ng add."
}
}
}