From 2e7cc949ae7c7ed5a583d15b4ea32c68c7730dab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Markb=C3=A5ge?= Date: Thu, 28 May 2020 16:12:37 -0700 Subject: [PATCH] Remove www builds of fetch (#19038) I don't think we'll ever use this just because we have such a unique set up for network delivery so we'll use something custom for this case. Also, we don't need a profiling build for this since it doesn't have an entry point. --- scripts/rollup/bundles.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/rollup/bundles.js b/scripts/rollup/bundles.js index edb78f9259..e20713b916 100644 --- a/scripts/rollup/bundles.js +++ b/scripts/rollup/bundles.js @@ -126,14 +126,7 @@ const bundles = [ /******* React Fetch Browser (experimental, new) *******/ { - bundleTypes: [ - NODE_DEV, - NODE_PROD, - NODE_PROFILING, - FB_WWW_DEV, - FB_WWW_PROD, - FB_WWW_PROFILING, - ], + bundleTypes: [NODE_DEV, NODE_PROD], moduleType: ISOMORPHIC, entry: 'react-fetch/index.browser', global: 'ReactFetch',