-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcollection.json
More file actions
48 lines (48 loc) · 1.54 KB
/
collection.json
File metadata and controls
48 lines (48 loc) · 1.54 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
{
"$schema": "../../../node_modules/@angular-devkit/schematics/collection-schema.json",
"schematics": {
"ng-new": {
"description": "New Ignite UI for Angular project",
"factory": "./ng-new/index#newProject",
"schema": "./ng-new/schema.json",
"hidden": true
},
"app-projects": {
"description": "A schematic using a source and a schema to validate options.",
"factory": "./app-projects/index",
"hidden": true
},
"start": {
"description": "Run npm start",
"factory": "./start/index",
"hidden": true
},
"component": {
"aliases": [ "c" ],
"description": "Create Ignite UI for Angular components and views.",
"factory": "./component/index#component",
"schema": "./component/schema.json"
},
"single-component": {
"description": "Create an Ignite UI for Angular component.",
"factory": "./component/index#singleComponent",
"schema": "./component/schema.json",
"hidden": true
},
"cli-config": {
"description": "Installs the needed dependencies onto the host application.",
"factory": "./cli-config/index"
},
"upgrade-packages": {
"description": "Upgrades to the licensed Ignite UI for Angular packages",
"factory": "./upgrade-packages/index",
"schema": "./upgrade-packages/schema.json"
},
"mcp": {
"description": "Starts the Ignite UI MCP server for AI assistant integration",
"factory": "./mcp/index",
"schema": "./mcp/schema.json",
"hidden": true
}
}
}