@lunora/astro 1.0.0-alpha.136 → 1.0.0-alpha.137

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 +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -70,7 +70,7 @@ export default defineConfig({
70
70
  ```
71
71
 
72
72
  ```ts
73
- // src/worker.ts — the composed worker's `export default`.
73
+ // src/server.ts — the composed worker's `export default`.
74
74
  import { handle } from "@astrojs/cloudflare/handler";
75
75
  import { withLunora } from "@lunora/astro";
76
76
 
@@ -81,7 +81,7 @@ export default withLunora(
81
81
  );
82
82
  ```
83
83
 
84
- Set `"main": "src/worker.ts"` in `wrangler.jsonc` so wrangler bundles this entry. `withLunora` reserves `/_lunora/rpc`, `/_lunora/ws`, and `/_lunora/admin/*` for the realtime plane; every other request falls through to Astro's SSR handler. An Astro render that throws is contained at the seam as a plain 500 — it can't take down realtime.
84
+ Set `"main": "src/server.ts"` in `wrangler.jsonc` so wrangler bundles this entry. `withLunora` reserves `/_lunora/rpc`, `/_lunora/ws`, and `/_lunora/admin/*` for the realtime plane; every other request falls through to Astro's SSR handler. An Astro render that throws is contained at the seam as a plain 500 — it can't take down realtime.
85
85
 
86
86
  Reactivity comes from the island adapter you hydrate with, not from this package. Preload a query in `.astro` frontmatter or a server endpoint with `@lunora/astro/server`, then hand the token to that adapter's `hydratePreloaded`:
87
87
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunora/astro",
3
- "version": "1.0.0-alpha.136",
3
+ "version": "1.0.0-alpha.137",
4
4
  "description": "Astro integration for Lunora — single-worker composition plus reactive-loader server helpers",
5
5
  "keywords": [
6
6
  "astro",
@@ -50,8 +50,8 @@
50
50
  "access": "public"
51
51
  },
52
52
  "dependencies": {
53
- "@lunora/client": "1.0.0-alpha.101",
54
- "@lunora/runtime": "1.0.0-alpha.116"
53
+ "@lunora/client": "1.0.0-alpha.102",
54
+ "@lunora/runtime": "1.0.0-alpha.117"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "astro": ">=6.0.0"