@nrwl/remix 1.0.0-alpha.20 → 1.0.0-alpha.21
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/README.md +4 -0
- package/package.json +1 -1
- package/src/generators/route/schema.json +3 -4
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -13,10 +13,9 @@
|
|
|
13
13
|
"properties": {
|
|
14
14
|
"project": {
|
|
15
15
|
"type": "string",
|
|
16
|
-
"description": "
|
|
16
|
+
"description": "The name of the project.",
|
|
17
17
|
"$default": {
|
|
18
|
-
"$source": "
|
|
19
|
-
"index": 0
|
|
18
|
+
"$source": "projectName"
|
|
20
19
|
},
|
|
21
20
|
"x-prompt": "What project is this route for?",
|
|
22
21
|
"pattern": "^[a-zA-Z].*$"
|
|
@@ -26,7 +25,7 @@
|
|
|
26
25
|
"description": "Route path",
|
|
27
26
|
"$default": {
|
|
28
27
|
"$source": "argv",
|
|
29
|
-
"index":
|
|
28
|
+
"index": 0
|
|
30
29
|
},
|
|
31
30
|
"x-prompt": "What is the path of the route?"
|
|
32
31
|
},
|