@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.
- package/lib/generators/components/GenerateEventEmitterCpp.js +1 -0
- package/lib/generators/components/GenerateEventEmitterCpp.js.flow +1 -0
- package/lib/generators/components/GenerateEventEmitterH.js +1 -0
- package/lib/generators/components/GenerateEventEmitterH.js.flow +1 -0
- package/package.json +1 -1
|
@@ -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)
|
|
@@ -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)
|