From 4dda96a4071d2cc4bbcc444438cfacee991f07e2 Mon Sep 17 00:00:00 2001 From: Jan Kassens Date: Tue, 13 Dec 2022 10:44:48 -0500 Subject: [PATCH] [react-www] remove forked bundle (#25866) *NOTE:* re-apply of 645ae2686b157c9f80193e1ada75b7e00ef49acf now that www is updated. The `enableNewReconciler` was gone with 420f0b7fa1fcc609fc7b438c4599d0f76fab4bc0, this removes the bundle config. --- dangerfile.js | 1 - scripts/rollup/bundles.js | 11 ----------- 2 files changed, 12 deletions(-) diff --git a/dangerfile.js b/dangerfile.js index b0c95d27b0f38..2322e85654474 100644 --- a/dangerfile.js +++ b/dangerfile.js @@ -46,7 +46,6 @@ const CRITICAL_ARTIFACT_PATHS = new Set([ 'oss-experimental/react-dom/cjs/react-dom.production.min.js', 'facebook-www/ReactDOM-prod.classic.js', 'facebook-www/ReactDOM-prod.modern.js', - 'facebook-www/ReactDOMForked-prod.classic.js', ]); const kilobyteFormatter = new Intl.NumberFormat('en', { diff --git a/scripts/rollup/bundles.js b/scripts/rollup/bundles.js index 271e5770b87e3..08160a0c86ac2 100644 --- a/scripts/rollup/bundles.js +++ b/scripts/rollup/bundles.js @@ -163,17 +163,6 @@ const bundles = [ externals: ['react'], }, - /******* React DOM - www - Uses forked reconciler *******/ - { - moduleType: RENDERER, - bundleTypes: [FB_WWW_DEV, FB_WWW_PROD, FB_WWW_PROFILING], - entry: 'react-dom', - global: 'ReactDOMForked', - minifyWithProdErrorCodes: true, - wrapWithModuleBoundaries: true, - externals: ['react'], - }, - /******* Test Utils *******/ { moduleType: RENDERER_UTILS,