-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
schema.json
54 lines (54 loc) · 1.59 KB
/
schema.json
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
{
"$schema": "https://json-schema.org/schema",
"$id": "NxWorkspaceMove",
"cli": "nx",
"title": "Nx Move",
"description": "Move a project to another folder in the workspace.",
"type": "object",
"examples": [
{
"command": "nx g @nx/workspace:move --project my-feature-lib --destination shared/my-feature-lib",
"description": "Move `libs/my-feature-lib` to `libs/shared/my-feature-lib`"
}
],
"properties": {
"projectName": {
"type": "string",
"alias": "project",
"description": "The name of the project to move.",
"x-dropdown": "projects"
},
"newProjectName": {
"type": "string",
"alias": "project",
"description": "The new name of the project after the move.",
"pattern": "(?:^@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*\\/[a-zA-Z0-9-~][a-zA-Z0-9-._~]*|^[a-zA-Z][^:]*)$",
"x-priority": "important"
},
"destination": {
"type": "string",
"description": "The folder to move the project into.",
"$default": {
"$source": "argv",
"index": 0
}
},
"importPath": {
"type": "string",
"description": "The new import path to use in the `tsconfig.base.json`."
},
"updateImportPath": {
"type": "boolean",
"description": "Should the generator update the import path to reflect the new location?",
"default": true
},
"skipFormat": {
"type": "boolean",
"aliases": ["skip-format"],
"description": "Skip formatting files.",
"default": false,
"x-priority": "internal"
}
},
"required": ["projectName", "destination"]
}