From 672dd7f886f23e3b89309a4a538a46f8e561b3be Mon Sep 17 00:00:00 2001 From: Sebastian Markbage Date: Mon, 14 Jun 2021 15:35:46 -0400 Subject: [PATCH] Mark as renderer for stable This shouldn't affect the FB one ideally but it's done with the same build so let's hope this works. --- scripts/rollup/bundles.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/rollup/bundles.js b/scripts/rollup/bundles.js index 624c34bd2d9af..6cb0883e03036 100644 --- a/scripts/rollup/bundles.js +++ b/scripts/rollup/bundles.js @@ -241,7 +241,7 @@ const bundles = [ bundleTypes: __EXPERIMENTAL__ ? [UMD_DEV, UMD_PROD, NODE_DEV, NODE_PROD] : [UMD_DEV, UMD_PROD, NODE_DEV, NODE_PROD, FB_WWW_DEV, FB_WWW_PROD], - moduleType: __EXPERIMENTAL__ ? RENDERER : NON_FIBER_RENDERER, + moduleType: RENDERER, entry: 'react-dom/server.browser', global: 'ReactDOMServer', externals: ['react'], @@ -254,7 +254,7 @@ const bundles = [ }, { bundleTypes: [NODE_DEV, NODE_PROD], - moduleType: __EXPERIMENTAL__ ? RENDERER : NON_FIBER_RENDERER, + moduleType: RENDERER, entry: 'react-dom/server.node', externals: ['react', 'stream'], babel: opts =>