@ng-atomic/schematics 4.3.0 → 4.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/collection.json +1 -1
- package/package.json +1 -1
- package/src/gpt3/schema.json +14 -5
package/collection.json
CHANGED
package/package.json
CHANGED
package/src/gpt3/schema.json
CHANGED
|
@@ -4,18 +4,27 @@
|
|
|
4
4
|
"title": "Angular Atomic Schematics GPT3",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
|
+
"path": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"format": "path",
|
|
10
|
+
"description": "The path at which to create the component file, relative to the current workspace. Default is a folder with the same name as the component in the project root.",
|
|
11
|
+
"visible": false
|
|
12
|
+
},
|
|
7
13
|
"project": {
|
|
8
14
|
"type": "string",
|
|
9
|
-
"description": "
|
|
15
|
+
"description": "The name of the project.",
|
|
10
16
|
"$default": {
|
|
11
17
|
"$source": "projectName"
|
|
12
18
|
}
|
|
13
19
|
},
|
|
14
|
-
"
|
|
15
|
-
"description": "Setup components directory",
|
|
20
|
+
"name": {
|
|
16
21
|
"type": "string",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
22
|
+
"description": "The name of the anything.",
|
|
23
|
+
"$default": {
|
|
24
|
+
"$source": "argv",
|
|
25
|
+
"index": 0
|
|
26
|
+
},
|
|
27
|
+
"x-prompt": "What name would you like to generate?"
|
|
19
28
|
}
|
|
20
29
|
},
|
|
21
30
|
"required": []
|