react-server-dom-webpack 18.3.0-next-594093496-20230209 → 18.3.0-next-6ddcbd4f9-20230209
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.
@@ -163,12 +163,10 @@ module.exports = function register() {
|
|
163
163
|
var proxy = new Proxy(clientReference, proxyHandlers); // Treat this as a resolved Promise for React's use()
|
164
164
|
|
165
165
|
target.status = 'fulfilled';
|
166
|
-
target.value = proxy;
|
167
|
-
|
166
|
+
target.value = proxy;
|
168
167
|
var then = target.then = Object.defineProperties(function then(resolve, reject) {
|
169
168
|
// Expose to React.
|
170
|
-
return Promise.resolve(
|
171
|
-
resolve(proxy));
|
169
|
+
return Promise.resolve(resolve(proxy));
|
172
170
|
}, // If this is not used as a Promise but is treated as a reference to a `.then`
|
173
171
|
// export then we should treat it as a reference to that name.
|
174
172
|
{
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-server-dom-webpack",
|
3
3
|
"description": "React Server Components bindings for DOM using Webpack. This is intended to be integrated into meta-frameworks. It is not intended to be imported directly.",
|
4
|
-
"version": "18.3.0-next-
|
4
|
+
"version": "18.3.0-next-6ddcbd4f9-20230209",
|
5
5
|
"keywords": [
|
6
6
|
"react"
|
7
7
|
],
|
@@ -54,8 +54,8 @@
|
|
54
54
|
"node": ">=0.10.0"
|
55
55
|
},
|
56
56
|
"peerDependencies": {
|
57
|
-
"react": "18.3.0-next-
|
58
|
-
"react-dom": "18.3.0-next-
|
57
|
+
"react": "18.3.0-next-6ddcbd4f9-20230209",
|
58
|
+
"react-dom": "18.3.0-next-6ddcbd4f9-20230209",
|
59
59
|
"webpack": "^5.59.0"
|
60
60
|
},
|
61
61
|
"dependencies": {
|