From d4afeb5aff445ea2a8bbd92efa6c532a37aab4e6 Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Mon, 12 Feb 2018 10:12:46 -0800 Subject: [PATCH] Added ReactFabric shim (#12216) --- .../rollup/shims/react-native/ReactFabric.js | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 scripts/rollup/shims/react-native/ReactFabric.js diff --git a/scripts/rollup/shims/react-native/ReactFabric.js b/scripts/rollup/shims/react-native/ReactFabric.js new file mode 100644 index 0000000000..4a396c224c --- /dev/null +++ b/scripts/rollup/shims/react-native/ReactFabric.js @@ -0,0 +1,23 @@ +/** + * Copyright (c) 2015-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + * + * @providesModule ReactFabric + * @flow + */ +'use strict'; + +// TODO @sema: Adjust types +import type {ReactNativeType} from 'ReactNativeTypes'; + +let ReactFabric; + +if (__DEV__) { + ReactFabric = require('ReactFabric-dev'); +} else { + ReactFabric = require('ReactFabric-prod'); +} + +module.exports = (ReactFabric: ReactNativeType);