rwsdk 0.1.0-alpha.2 → 0.1.0-alpha.3

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.
@@ -0,0 +1 @@
1
+ export * from "../lib/streams/consumeEventStream";
@@ -0,0 +1 @@
1
+ export * from "../lib/streams/consumeEventStream";
@@ -113,10 +113,6 @@ export const configPlugin = ({ mode, silent, projectRootDir, clientEntryPathname
113
113
  server: {
114
114
  hmr: true,
115
115
  },
116
- resolve: {
117
- conditions: ["workerd"],
118
- alias: [],
119
- },
120
116
  builder: {
121
117
  buildApp: async (builder) => {
122
118
  // note(justinvdm, 27 May 2025): **Ordering is important**:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rwsdk",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.1.0-alpha.3",
4
4
  "description": "Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,6 +22,7 @@
22
22
  },
23
23
  "./client": {
24
24
  "react-server": "./dist/runtime/entries/no-react-server.js",
25
+ "workerd": "./dist/runtime/entries/clientSSR.js",
25
26
  "types": "./dist/runtime/entries/client.d.ts",
26
27
  "default": "./dist/runtime/entries/client.js"
27
28
  },