-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerators.json
More file actions
26 lines (26 loc) · 862 Bytes
/
generators.json
File metadata and controls
26 lines (26 loc) · 862 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
25
26
{
"name": "cdwr/nx-payload",
"extends": ["@nx/next"],
"generators": {
"init": {
"factory": "./src/generators/init/init#initGeneratorInternal",
"schema": "./src/generators/init/schema.json",
"description": "Initialize the `@cdwr/nx-payload` plugin.",
"hidden": true
},
"application": {
"factory": "./src/generators/application/application#applicationGeneratorInternal",
"schema": "./src/generators/application/schema.json",
"description": "Create an application.",
"aliases": ["app"],
"x-type": "application"
},
"preset": {
"factory": "./src/generators/preset/preset#presetGenerator",
"schema": "./src/generators/preset/schema.json",
"description": "Create a workspace with an application.",
"hidden": true,
"x-use-standalone-layout": false
}
}
}