@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 CHANGED
@@ -52,6 +52,10 @@ You can then add your first app and run it:
52
52
  npx nx g @nrwl/remix:app demo
53
53
  ```
54
54
 
55
+
56
+ ## Adding new routes
57
+
58
+
55
59
  ## Workspace libraries
56
60
 
57
61
  The Remix setup leverages npm/yarn/pnpm workspaces and Nx buildable libraries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/remix",
3
- "version": "1.0.0-alpha.20",
3
+ "version": "1.0.0-alpha.21",
4
4
  "main": "src/index.js",
5
5
  "generators": "./generators.json",
6
6
  "dependencies": {
@@ -13,10 +13,9 @@
13
13
  "properties": {
14
14
  "project": {
15
15
  "type": "string",
16
- "description": "Route path",
16
+ "description": "The name of the project.",
17
17
  "$default": {
18
- "$source": "argv",
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": 1
28
+ "index": 0
30
29
  },
31
30
  "x-prompt": "What is the path of the route?"
32
31
  },