-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerators.json
More file actions
24 lines (24 loc) · 869 Bytes
/
Copy pathgenerators.json
File metadata and controls
24 lines (24 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"generators": {
"add": {
"factory": "./dist/generators/add-recipe/generator",
"schema": "./src/generators/add-recipe/schema.json",
"description": "Add a recipe to an existing project"
},
"list": {
"factory": "./dist/generators/list-recipes/generator",
"schema": "./src/generators/list-recipes/schema.json",
"description": "List installed and available recipes"
},
"remove": {
"factory": "./dist/generators/remove-recipe/generator",
"schema": "./src/generators/remove-recipe/schema.json",
"description": "Remove a recipe from an existing project"
},
"migrate": {
"factory": "./dist/generators/migrate-recipe/generator",
"schema": "./src/generators/migrate-recipe/schema.json",
"description": "Migrate from one recipe to another within the same category"
}
}
}