Skip to content

Commit

Permalink
Put NativeCS bundles into their own directory (#11266)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon authored Oct 18, 2017
1 parent ce335f7 commit 066f022
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/rollup/packaging.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
}
Expand Down

0 comments on commit 066f022

Please # to comment.