Skip to content

Commit c9749d3

Browse files
authored
Generate RN renderers for stable builds (facebook#19421)
* Generate RN renderers for experimental builds * Don't generate FB builds for experimental channels
1 parent ab1f517 commit c9749d3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

scripts/rollup/bundles.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,8 @@ const bundles = [
350350
/******* React Native *******/
351351
{
352352
bundleTypes: __EXPERIMENTAL__
353-
? [RN_FB_DEV, RN_FB_PROD, RN_FB_PROFILING]
354-
: [],
353+
? []
354+
: [RN_FB_DEV, RN_FB_PROD, RN_FB_PROFILING],
355355
moduleType: RENDERER,
356356
entry: 'react-native-renderer',
357357
global: 'ReactNativeRenderer',
@@ -380,8 +380,8 @@ const bundles = [
380380
/******* React Native Fabric *******/
381381
{
382382
bundleTypes: __EXPERIMENTAL__
383-
? [RN_FB_DEV, RN_FB_PROD, RN_FB_PROFILING]
384-
: [],
383+
? []
384+
: [RN_FB_DEV, RN_FB_PROD, RN_FB_PROFILING],
385385
moduleType: RENDERER,
386386
entry: 'react-native-renderer/fabric',
387387
global: 'ReactFabric',
@@ -416,6 +416,8 @@ const bundles = [
416416
UMD_DEV,
417417
UMD_PROD,
418418
RN_FB_DEV,
419+
RN_FB_PROD,
420+
RN_FB_PROFILING,
419421
],
420422
moduleType: RENDERER,
421423
entry: 'react-test-renderer',

0 commit comments

Comments
 (0)