2015-10-09 14:56:00 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-04-12 15:28:22 +00:00
|
|
|
Array.prototype.values || require('core-js/fn/array/values');
|
|
|
|
Object.entries || require('core-js/fn/object/entries');
|
|
|
|
Object.values || require('core-js/fn/object/values');
|
2015-11-10 18:51:39 +00:00
|
|
|
|
2015-10-09 14:56:00 +00:00
|
|
|
var _only = [];
|
|
|
|
|
2016-07-15 13:25:27 +00:00
|
|
|
function registerOnly(onlyList) {
|
|
|
|
require('babel-register')(config(onlyList));
|
|
|
|
}
|
2016-05-21 13:53:32 +00:00
|
|
|
|
2016-07-15 13:25:27 +00:00
|
|
|
function config(onlyList) {
|
|
|
|
_only = _only.concat(onlyList);
|
|
|
|
return {
|
2016-05-21 13:53:32 +00:00
|
|
|
presets: ['es2015-node'],
|
|
|
|
plugins: [
|
|
|
|
'transform-flow-strip-types',
|
|
|
|
'syntax-trailing-function-commas',
|
|
|
|
'transform-object-rest-spread',
|
|
|
|
],
|
|
|
|
only: _only,
|
2016-07-15 13:25:27 +00:00
|
|
|
retainLines: true,
|
2016-05-21 13:53:32 +00:00
|
|
|
sourceMaps: 'inline',
|
2016-07-15 13:25:27 +00:00
|
|
|
babelrc: false,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = exports = registerOnly;
|
|
|
|
exports.config = config;
|