From 5d29478716cefbf8290dfdd19129156c2ac75973 Mon Sep 17 00:00:00 2001 From: Jack Pope Date: Mon, 6 May 2024 11:32:43 -0400 Subject: [PATCH] Add FB build for ReactReconcilerConstants (#29003) In order to integrate the `react-reconciler` build created in #28880 with third party libraries, we need to have matching `react-reconciler/constants` to go with it. --- scripts/rollup/bundles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rollup/bundles.js b/scripts/rollup/bundles.js index f6dc4438fa..09ffb11723 100644 --- a/scripts/rollup/bundles.js +++ b/scripts/rollup/bundles.js @@ -884,7 +884,7 @@ const bundles = [ /******* Reconciler Constants *******/ { moduleType: RENDERER_UTILS, - bundleTypes: [NODE_DEV, NODE_PROD], + bundleTypes: [NODE_DEV, NODE_PROD, FB_WWW_DEV, FB_WWW_PROD], entry: 'react-reconciler/constants', global: 'ReactReconcilerConstants', minifyWithProdErrorCodes: true,