create-gonvex 0.4.1 → 0.5.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -15,8 +15,8 @@ npm run dev
15
15
  ```
16
16
 
17
17
  The generated app expects a running Gonvex runtime. `npm run dev` watches and
18
- syncs the backend and starts Vite; it does not start Postgres, Valkey, or the Go
19
- runtime. New local projects receive
18
+ syncs the backend and starts Vite; it does not start Postgres, Valkey, or the
19
+ Rust runtime. New local projects receive
20
20
  `VALKEY_URL=redis://127.0.0.1:6380/0`; Gonvex requires that service to be
21
21
  reachable when the runtime starts.
22
22
 
@@ -60,8 +60,8 @@ the first workspace invitation.
60
60
  ```txt
61
61
  my-app/
62
62
  gonvex/
63
- schema.go
64
- messages.go
63
+ index.ts
64
+ messages.ts
65
65
  _generated/
66
66
  src/
67
67
  gonvex.json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-gonvex",
3
- "version": "0.4.1",
3
+ "version": "0.5.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-gonvex": "./dist/index.js"
@@ -10,7 +10,7 @@
10
10
  "README.md"
11
11
  ],
12
12
  "dependencies": {
13
- "@gonvex/cli": "0.4.1"
13
+ "@gonvex/cli": "0.5.1"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/node": "^24.12.4",