@react-native/codegen 0.80.0-nightly-20250429-e486fda10 → 0.80.0-nightly-20250501-88a04c530

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.
@@ -374,6 +374,7 @@ module.exports = {
374
374
  return components;
375
375
  })
376
376
  .filter(Boolean)
377
+ // $FlowFixMe[unsafe-object-assign]
377
378
  .reduce((acc, components) => Object.assign(acc, components), {});
378
379
  const extraIncludes = new Set();
379
380
  const componentEmitters = Object.keys(moduleComponents)
@@ -430,6 +430,7 @@ module.exports = {
430
430
  return components;
431
431
  })
432
432
  .filter(Boolean)
433
+ // $FlowFixMe[unsafe-object-assign]
433
434
  .reduce((acc, components) => Object.assign(acc, components), {});
434
435
 
435
436
  const extraIncludes = new Set<string>();
@@ -254,6 +254,7 @@ module.exports = {
254
254
  return components;
255
255
  })
256
256
  .filter(Boolean)
257
+ // $FlowFixMe[unsafe-object-assign]
257
258
  .reduce((acc, components) => Object.assign(acc, components), {});
258
259
  const extraIncludes = new Set();
259
260
  const componentEmitters = Object.keys(moduleComponents)
@@ -337,6 +337,7 @@ module.exports = {
337
337
  return components;
338
338
  })
339
339
  .filter(Boolean)
340
+ // $FlowFixMe[unsafe-object-assign]
340
341
  .reduce((acc, components) => Object.assign(acc, components), {});
341
342
 
342
343
  const extraIncludes = new Set<string>();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native/codegen",
3
- "version": "0.80.0-nightly-20250429-e486fda10",
3
+ "version": "0.80.0-nightly-20250501-88a04c530",
4
4
  "description": "Code generation tools for React Native",
5
5
  "license": "MIT",
6
6
  "repository": {