react-server-dom-webpack 18.3.0-canary-4ddc019ac-20230614 → 18.3.0-canary-613e6f5fc-20230616
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.
@@ -3186,7 +3186,8 @@ function decodeReplyFromBusboy(busboyStream, webpackMap) {
|
|
3186
3186
|
close(response);
|
3187
3187
|
});
|
3188
3188
|
busboyStream.on('error', function (err) {
|
3189
|
-
reportGlobalError(response,
|
3189
|
+
reportGlobalError(response, // $FlowFixMe[incompatible-call] types Error and mixed are incompatible
|
3190
|
+
err);
|
3190
3191
|
});
|
3191
3192
|
return getRoot(response);
|
3192
3193
|
}
|
@@ -3118,7 +3118,8 @@ function decodeReplyFromBusboy(busboyStream, webpackMap) {
|
|
3118
3118
|
close(response);
|
3119
3119
|
});
|
3120
3120
|
busboyStream.on('error', function (err) {
|
3121
|
-
reportGlobalError(response,
|
3121
|
+
reportGlobalError(response, // $FlowFixMe[incompatible-call] types Error and mixed are incompatible
|
3122
|
+
err);
|
3122
3123
|
});
|
3123
3124
|
return getRoot(response);
|
3124
3125
|
}
|
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-canary-
|
4
|
+
"version": "18.3.0-canary-613e6f5fc-20230616",
|
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-canary-
|
82
|
-
"react-dom": "18.3.0-canary-
|
81
|
+
"react": "18.3.0-canary-613e6f5fc-20230616",
|
82
|
+
"react-dom": "18.3.0-canary-613e6f5fc-20230616",
|
83
83
|
"webpack": "^5.59.0"
|
84
84
|
},
|
85
85
|
"dependencies": {
|