react-server-dom-webpack 19.2.0-canary-3820740a-20250509 → 19.2.0-canary-b94603b9-20250513

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.
@@ -2746,10 +2746,10 @@
2746
2746
  return hook.checkDCE ? !0 : !1;
2747
2747
  })({
2748
2748
  bundleType: 1,
2749
- version: "19.2.0-canary-3820740a-20250509",
2749
+ version: "19.2.0-canary-b94603b9-20250513",
2750
2750
  rendererPackageName: "react-server-dom-webpack",
2751
2751
  currentDispatcherRef: ReactSharedInternals,
2752
- reconcilerVersion: "19.2.0-canary-3820740a-20250509",
2752
+ reconcilerVersion: "19.2.0-canary-b94603b9-20250513",
2753
2753
  getCurrentComponentInfo: function () {
2754
2754
  return currentOwnerInDEV;
2755
2755
  }
@@ -253,8 +253,12 @@ class ReactFlightWebpackPlugin {
253
253
  try {
254
254
  for (_iterator.s(); !(_step = _iterator.n()).done; ) {
255
255
  const file = _step.value;
256
- if (!file.endsWith(".js")) break;
257
- if (file.endsWith(".hot-update.js")) break;
256
+ if (!file.endsWith(".js") && !file.endsWith(".mjs")) break;
257
+ if (
258
+ file.endsWith(".hot-update.js") ||
259
+ file.endsWith(".hot-update.mjs")
260
+ )
261
+ break;
258
262
  chunks.push(c.id, file);
259
263
  break;
260
264
  }
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": "19.2.0-canary-3820740a-20250509",
4
+ "version": "19.2.0-canary-b94603b9-20250513",
5
5
  "keywords": [
6
6
  "react"
7
7
  ],
@@ -99,8 +99,8 @@
99
99
  "node": ">=0.10.0"
100
100
  },
101
101
  "peerDependencies": {
102
- "react": "19.2.0-canary-3820740a-20250509",
103
- "react-dom": "19.2.0-canary-3820740a-20250509",
102
+ "react": "19.2.0-canary-b94603b9-20250513",
103
+ "react-dom": "19.2.0-canary-b94603b9-20250513",
104
104
  "webpack": "^5.59.0"
105
105
  },
106
106
  "dependencies": {