react-server-dom-webpack 18.3.0-next-49f741046-20230305 → 18.3.0-next-703c67560-20230307

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.
@@ -185,6 +185,7 @@ function processErrorChunkDev(request, id, digest, message, stack) {
185
185
  return stringToChunk(row);
186
186
  }
187
187
  function processModelChunk(request, id, model) {
188
+ // $FlowFixMe[incompatible-type] stringify can return null
188
189
  var json = stringify(model, request.toJSON);
189
190
  var row = id.toString(16) + ':' + json + '\n';
190
191
  return stringToChunk(row);
@@ -195,6 +196,7 @@ function processReferenceChunk(request, id, reference) {
195
196
  return stringToChunk(row);
196
197
  }
197
198
  function processImportChunk(request, id, clientReferenceMetadata) {
199
+ // $FlowFixMe[incompatible-type] stringify can return null
198
200
  var json = stringify(clientReferenceMetadata);
199
201
  var row = serializeRowHeader('I', id) + json + '\n';
200
202
  return stringToChunk(row);
@@ -188,6 +188,7 @@ function processErrorChunkDev(request, id, digest, message, stack) {
188
188
  return stringToChunk(row);
189
189
  }
190
190
  function processModelChunk(request, id, model) {
191
+ // $FlowFixMe[incompatible-type] stringify can return null
191
192
  var json = stringify(model, request.toJSON);
192
193
  var row = id.toString(16) + ':' + json + '\n';
193
194
  return stringToChunk(row);
@@ -198,6 +199,7 @@ function processReferenceChunk(request, id, reference) {
198
199
  return stringToChunk(row);
199
200
  }
200
201
  function processImportChunk(request, id, clientReferenceMetadata) {
202
+ // $FlowFixMe[incompatible-type] stringify can return null
201
203
  var json = stringify(clientReferenceMetadata);
202
204
  var row = serializeRowHeader('I', id) + json + '\n';
203
205
  return stringToChunk(row);
@@ -254,6 +254,7 @@ function processErrorChunkDev(request, id, digest, message, stack) {
254
254
  return stringToChunk(row);
255
255
  }
256
256
  function processModelChunk(request, id, model) {
257
+ // $FlowFixMe[incompatible-type] stringify can return null
257
258
  var json = stringify(model, request.toJSON);
258
259
  var row = id.toString(16) + ':' + json + '\n';
259
260
  return stringToChunk(row);
@@ -264,6 +265,7 @@ function processReferenceChunk(request, id, reference) {
264
265
  return stringToChunk(row);
265
266
  }
266
267
  function processImportChunk(request, id, clientReferenceMetadata) {
268
+ // $FlowFixMe[incompatible-type] stringify can return null
267
269
  var json = stringify(clientReferenceMetadata);
268
270
  var row = serializeRowHeader('I', id) + json + '\n';
269
271
  return stringToChunk(row);
@@ -254,6 +254,7 @@ function processErrorChunkDev(request, id, digest, message, stack) {
254
254
  return stringToChunk(row);
255
255
  }
256
256
  function processModelChunk(request, id, model) {
257
+ // $FlowFixMe[incompatible-type] stringify can return null
257
258
  var json = stringify(model, request.toJSON);
258
259
  var row = id.toString(16) + ':' + json + '\n';
259
260
  return stringToChunk(row);
@@ -264,6 +265,7 @@ function processReferenceChunk(request, id, reference) {
264
265
  return stringToChunk(row);
265
266
  }
266
267
  function processImportChunk(request, id, clientReferenceMetadata) {
268
+ // $FlowFixMe[incompatible-type] stringify can return null
267
269
  var json = stringify(clientReferenceMetadata);
268
270
  var row = serializeRowHeader('I', id) + json + '\n';
269
271
  return stringToChunk(row);
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-49f741046-20230305",
4
+ "version": "18.3.0-next-703c67560-20230307",
5
5
  "keywords": [
6
6
  "react"
7
7
  ],
@@ -78,8 +78,8 @@
78
78
  "node": ">=0.10.0"
79
79
  },
80
80
  "peerDependencies": {
81
- "react": "18.3.0-next-49f741046-20230305",
82
- "react-dom": "18.3.0-next-49f741046-20230305",
81
+ "react": "18.3.0-next-703c67560-20230307",
82
+ "react-dom": "18.3.0-next-703c67560-20230307",
83
83
  "webpack": "^5.59.0"
84
84
  },
85
85
  "dependencies": {
@@ -182,6 +182,7 @@
182
182
  return stringToChunk(row);
183
183
  }
184
184
  function processModelChunk(request, id, model) {
185
+ // $FlowFixMe[incompatible-type] stringify can return null
185
186
  var json = stringify(model, request.toJSON);
186
187
  var row = id.toString(16) + ':' + json + '\n';
187
188
  return stringToChunk(row);
@@ -192,6 +193,7 @@
192
193
  return stringToChunk(row);
193
194
  }
194
195
  function processImportChunk(request, id, clientReferenceMetadata) {
196
+ // $FlowFixMe[incompatible-type] stringify can return null
195
197
  var json = stringify(clientReferenceMetadata);
196
198
  var row = serializeRowHeader('I', id) + json + '\n';
197
199
  return stringToChunk(row);