metro-bundler: tweak babel-register callsite

This commit is contained in:
Jean Lauliac 2017-07-06 17:44:23 +01:00
parent 761de6697b
commit 8086caab7c
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,10 @@ require('./setupNodePolyfills');
var _only = [];
function registerOnly(onlyList) {
// This prevents `babel-register` from transforming the code of the
// plugins/presets that we are require-ing themselves before setting up the
// actual config.
require('babel-register')({only: [], babelrc: false});
require('babel-register')(config(onlyList));
}