1 | {
|
2 | "cli": "nx",
|
3 | "$id": "SchematicsNxWorkspaceSchematic",
|
4 | "title": "Create a custom generator",
|
5 | "description": "Create a custom generator.",
|
6 | "type": "object",
|
7 | "properties": {
|
8 | "name": {
|
9 | "type": "string",
|
10 | "description": "Generator name.",
|
11 | "$default": {
|
12 | "$source": "argv",
|
13 | "index": 0
|
14 | },
|
15 | "x-prompt": "What name would you like to use for the workspace generator?"
|
16 | },
|
17 | "skipFormat": {
|
18 | "description": "Skip formatting files.",
|
19 | "type": "boolean",
|
20 | "default": false,
|
21 | "x-priority": "internal"
|
22 | }
|
23 | },
|
24 | "required": ["name"]
|
25 | }
|