@nrwl/remix 1.0.0-alpha.23 → 1.0.0-alpha.24

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.
Files changed (2) hide show
  1. package/README.md +5 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -52,16 +52,19 @@ 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
55
  ## Adding new routes
57
56
 
58
-
59
57
  Add a new route with one command.
60
58
 
61
59
  ```bash
62
60
  npx nx g route
61
+
62
+ # e.g.
63
+ npx nx g route foo/bar --project=demo
63
64
  ```
64
65
 
66
+ Browse to `http://localhost:3000/foo/bar` to see the new route.
67
+
65
68
  ## Workspace libraries
66
69
 
67
70
  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.23",
3
+ "version": "1.0.0-alpha.24",
4
4
  "main": "src/index.js",
5
5
  "generators": "./generators.json",
6
6
  "dependencies": {