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.
@@ -510,8 +510,7 @@ function createModelResolver(chunk, parentObject, key) {
510
510
  deps: 1,
511
511
  value: null
512
512
  };
513
- } // $FlowFixMe[missing-local-annot]
514
-
513
+ }
515
514
 
516
515
  return function (value) {
517
516
  parentObject[key] = value;
@@ -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; // $FlowFixMe[missing-local-annot]
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( // $FlowFixMe[incompatible-call] found when upgrading Flow
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-594093496-20230209",
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-594093496-20230209",
58
- "react-dom": "18.3.0-next-594093496-20230209",
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": {
@@ -507,8 +507,7 @@
507
507
  deps: 1,
508
508
  value: null
509
509
  };
510
- } // $FlowFixMe[missing-local-annot]
511
-
510
+ }
512
511
 
513
512
  return function (value) {
514
513
  parentObject[key] = value;