@samitouri / QOS-React-1 / commits / 6c0f37f94b

[bundles] stop building legacy Paper renderer (#31429)

Jan Kassens committed Nov 5, 2024 at 15:49 UTC 6c0f37f94b020279fb5ada70facc008fccb7172e
1 file changed -34
scripts/rollup/bundles.js
-34
@@ -696,40 +696,6 @@ const bundles = [
696 }),
697 },
698
699 - /******* React Native *******/
700 - {
701 - bundleTypes: __EXPERIMENTAL__
702 - ? []
703 - : [RN_FB_DEV, RN_FB_PROD, RN_FB_PROFILING],
704 - moduleType: RENDERER,
705 - entry: 'react-native-renderer',
706 - global: 'ReactNativeRenderer',
707 - externals: ['react-native', 'ReactNativeInternalFeatureFlags'],
708 - minifyWithProdErrorCodes: false,
709 - wrapWithModuleBoundaries: true,
710 - babel: opts =>
711 - Object.assign({}, opts, {
712 - plugins: opts.plugins.concat([
713 - [require.resolve('@babel/plugin-transform-classes'), {loose: true}],
714 - ]),
715 - }),
716 - },
717 - {
718 - bundleTypes: [RN_OSS_DEV, RN_OSS_PROD, RN_OSS_PROFILING],
719 - moduleType: RENDERER,
720 - entry: 'react-native-renderer',
721 - global: 'ReactNativeRenderer',
722 - externals: ['react-native'],
723 - minifyWithProdErrorCodes: false,
724 - wrapWithModuleBoundaries: true,
725 - babel: opts =>
726 - Object.assign({}, opts, {
727 - plugins: opts.plugins.concat([
728 - [require.resolve('@babel/plugin-transform-classes'), {loose: true}],
729 - ]),
730 - }),
731 - },
732 -
699 /******* React Native Fabric *******/
700 {
701 bundleTypes: __EXPERIMENTAL__