mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
f80000b9e7
Summary: Moves the `buildRegExps` function from `react-native` to `metro-babel-register`. This way, it is easier to reuse, and we can remove FB-specific logic from React Native. Reviewed By: jeanlauliac, mjesun Differential Revision: D7727483 fbshipit-source-id: 0f7773ff044033c465f0712c523a0aef61bf8444
24 lines
634 B
JavaScript
24 lines
634 B
JavaScript
/**
|
|
* Copyright (c) 2013-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.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const babelRegisterOnly = require('metro-babel-register');
|
|
|
|
const BABEL_ENABLED_PATHS = ['local-cli'];
|
|
|
|
/**
|
|
* Centralized place to register all the directories that need a Babel
|
|
* transformation before being fed to Node.js. Notably, this is necessary to
|
|
* support Flow type annotations.
|
|
*/
|
|
function setupBabel() {
|
|
babelRegisterOnly(babelRegisterOnly.buildRegExps(__dirname, BABEL_ENABLED_PATHS));
|
|
}
|
|
|
|
module.exports = setupBabel;
|