From 066f02281b5907101e57dd70e2c5c2ed9f748ca2 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Wed, 18 Oct 2017 13:56:07 +0100 Subject: [PATCH] Put NativeCS bundles into their own directory (#11266) --- scripts/rollup/packaging.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/rollup/packaging.js b/scripts/rollup/packaging.js index 23d75f9a12449..60d9a281c522c 100644 --- a/scripts/rollup/packaging.js +++ b/scripts/rollup/packaging.js @@ -201,6 +201,8 @@ function getPackageDestination(config, bundleType, filename, hasteName) { } else if (bundleType === RN_DEV || bundleType === RN_PROD) { if (hasteName === 'ReactNativeRTFiber') { dest = `${config.destDir}react-native-rt/${filename}`; + } else if (hasteName === 'ReactNativeCSFiber') { + dest = `${config.destDir}react-native-cs/${filename}`; } else { dest = `${config.destDir}react-native/${filename}`; }