react-server-dom-webpack 18.3.0-next-b0671f9ea-20230130 → 18.3.0-next-8b9ac8175-20230131
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.
@@ -112,9 +112,9 @@ function writeStringChunk(destination, stringChunk) {
|
|
112
112
|
|
113
113
|
if (read < stringChunk.length) {
|
114
114
|
writeToDestination(destination, currentView);
|
115
|
-
currentView = new Uint8Array(VIEW_SIZE);
|
116
|
-
|
117
|
-
|
115
|
+
currentView = new Uint8Array(VIEW_SIZE);
|
116
|
+
writtenBytes = textEncoder.encodeInto(stringChunk.slice(read), // $FlowFixMe[incompatible-call] found when upgrading Flow
|
117
|
+
currentView).written;
|
118
118
|
}
|
119
119
|
|
120
120
|
if (writtenBytes === VIEW_SIZE) {
|
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-8b9ac8175-20230131",
|
5
5
|
"keywords": [
|
6
6
|
"react"
|
7
7
|
],
|
@@ -49,8 +49,8 @@
|
|
49
49
|
"node": ">=0.10.0"
|
50
50
|
},
|
51
51
|
"peerDependencies": {
|
52
|
-
"react": "18.3.0-next-
|
53
|
-
"react-dom": "18.3.0-next-
|
52
|
+
"react": "18.3.0-next-8b9ac8175-20230131",
|
53
|
+
"react-dom": "18.3.0-next-8b9ac8175-20230131",
|
54
54
|
"webpack": "^5.59.0"
|
55
55
|
},
|
56
56
|
"dependencies": {
|