rwsdk 1.0.0-alpha.15 → 1.0.0-alpha.16
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/dist/vite/configPlugin.mjs +22 -6
- package/package.json +2 -2
|
@@ -32,13 +32,16 @@ export const configPlugin = ({ silent, projectRootDir, workerEntryPathname, clie
|
|
|
32
32
|
optimizeDeps: {
|
|
33
33
|
noDiscovery: false,
|
|
34
34
|
include: [
|
|
35
|
-
"rwsdk/
|
|
36
|
-
"rwsdk/router",
|
|
35
|
+
"rwsdk/__ssr_bridge",
|
|
37
36
|
"rwsdk/auth",
|
|
37
|
+
"rwsdk/constants",
|
|
38
38
|
"rwsdk/db",
|
|
39
|
-
"rwsdk/
|
|
40
|
-
"rwsdk/
|
|
39
|
+
"rwsdk/debug",
|
|
40
|
+
"rwsdk/llms",
|
|
41
41
|
"rwsdk/realtime/durableObject",
|
|
42
|
+
"rwsdk/realtime/worker",
|
|
43
|
+
"rwsdk/router",
|
|
44
|
+
"rwsdk/worker",
|
|
42
45
|
],
|
|
43
46
|
exclude: [],
|
|
44
47
|
entries: [workerEntryPathname],
|
|
@@ -86,7 +89,13 @@ export const configPlugin = ({ silent, projectRootDir, workerEntryPathname, clie
|
|
|
86
89
|
},
|
|
87
90
|
optimizeDeps: {
|
|
88
91
|
noDiscovery: false,
|
|
89
|
-
include: [
|
|
92
|
+
include: [
|
|
93
|
+
"rwsdk/client",
|
|
94
|
+
"rwsdk/constants",
|
|
95
|
+
"rwsdk/debug",
|
|
96
|
+
"rwsdk/realtime/client",
|
|
97
|
+
"rwsdk/turnstile",
|
|
98
|
+
],
|
|
90
99
|
entries: [],
|
|
91
100
|
esbuildOptions: {
|
|
92
101
|
jsx: "automatic",
|
|
@@ -113,7 +122,14 @@ export const configPlugin = ({ silent, projectRootDir, workerEntryPathname, clie
|
|
|
113
122
|
noDiscovery: false,
|
|
114
123
|
entries: [workerEntryPathname],
|
|
115
124
|
exclude: externalModules,
|
|
116
|
-
include: [
|
|
125
|
+
include: [
|
|
126
|
+
"rwsdk/__ssr",
|
|
127
|
+
"rwsdk/__ssr_bridge",
|
|
128
|
+
"rwsdk/client",
|
|
129
|
+
"rwsdk/constants",
|
|
130
|
+
"rwsdk/debug",
|
|
131
|
+
"rwsdk/realtime/client",
|
|
132
|
+
],
|
|
117
133
|
esbuildOptions: {
|
|
118
134
|
jsx: "automatic",
|
|
119
135
|
jsxImportSource: "react",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rwsdk",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.16",
|
|
4
4
|
"description": "Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"vite": "^6.2.6 || 7.x",
|
|
175
175
|
"wrangler": "^4.35.0"
|
|
176
176
|
},
|
|
177
|
-
"packageManager": "pnpm@
|
|
177
|
+
"packageManager": "pnpm@10.0.0+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b",
|
|
178
178
|
"devDependencies": {
|
|
179
179
|
"@types/debug": "~4.1.12",
|
|
180
180
|
"@types/js-beautify": "~1.14.3",
|