2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +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.
|
2015-01-30 01:10:49 +00:00
|
|
|
*
|
|
|
|
* Note: This is a fork of the fb-specific transform.js
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2015-09-19 22:20:25 +00:00
|
|
|
const babel = require('babel-core');
|
2015-11-14 11:23:46 +00:00
|
|
|
const fs = require('fs');
|
2015-11-12 11:11:44 +00:00
|
|
|
const inlineRequires = require('fbjs-scripts/babel-6/inline-requires');
|
2015-11-14 11:23:46 +00:00
|
|
|
const json5 = require('json5');
|
|
|
|
const path = require('path');
|
2016-01-04 19:31:48 +00:00
|
|
|
const ReactPackager = require('./react-packager');
|
2015-11-14 11:23:46 +00:00
|
|
|
|
|
|
|
const babelRC =
|
|
|
|
json5.parse(
|
|
|
|
fs.readFileSync(
|
|
|
|
path.resolve(__dirname, 'react-packager', '.babelrc')));
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2015-09-19 22:20:25 +00:00
|
|
|
function transform(src, filename, options) {
|
2015-10-21 23:25:24 +00:00
|
|
|
options = options || {};
|
2015-11-14 11:23:46 +00:00
|
|
|
|
|
|
|
const extraPlugins = ['external-helpers-2'];
|
|
|
|
const extraConfig = {
|
|
|
|
filename,
|
|
|
|
sourceFileName: filename,
|
|
|
|
};
|
|
|
|
|
|
|
|
const config = Object.assign({}, babelRC, extraConfig);
|
2015-08-15 22:59:37 +00:00
|
|
|
|
2015-11-10 02:30:31 +00:00
|
|
|
if (options.inlineRequires) {
|
2015-11-14 11:23:46 +00:00
|
|
|
extraPlugins.push(inlineRequires);
|
2015-08-15 22:59:37 +00:00
|
|
|
}
|
2015-11-14 11:23:46 +00:00
|
|
|
config.plugins = extraPlugins.concat(config.plugins);
|
2015-08-15 22:59:37 +00:00
|
|
|
|
2015-11-20 15:52:36 +00:00
|
|
|
// Manually resolve all default Babel plugins. babel.transform will attempt to resolve
|
|
|
|
// all base plugins relative to the file it's compiling. This makes sure that we're
|
|
|
|
// using the plugins installed in the react-native package.
|
|
|
|
config.plugins = config.plugins.map(function(plugin) {
|
|
|
|
// Normalise plugin to an array.
|
|
|
|
if (!Array.isArray(plugin)) {
|
|
|
|
plugin = [plugin];
|
|
|
|
}
|
|
|
|
// Only resolve the plugin if it's a string reference.
|
|
|
|
if (typeof plugin[0] === 'string') {
|
|
|
|
plugin[0] = require(`babel-plugin-${plugin[0]}`);
|
2015-12-04 14:43:03 +00:00
|
|
|
plugin[0] = plugin[0].__esModule ? plugin[0].default : plugin[0];
|
2015-11-20 15:52:36 +00:00
|
|
|
}
|
|
|
|
return plugin;
|
|
|
|
});
|
|
|
|
|
2015-11-14 11:23:46 +00:00
|
|
|
const result = babel.transform(src, Object.assign({}, babelRC, config));
|
2015-05-22 19:16:15 +00:00
|
|
|
|
|
|
|
return {
|
2016-01-04 19:31:48 +00:00
|
|
|
code: result.code,
|
|
|
|
filename: filename,
|
2015-02-25 17:54:45 +00:00
|
|
|
};
|
2015-01-30 01:10:49 +00:00
|
|
|
}
|
|
|
|
|
2015-02-19 01:43:36 +00:00
|
|
|
module.exports = function(data, callback) {
|
2015-09-19 22:20:25 +00:00
|
|
|
let result;
|
2015-02-19 01:43:36 +00:00
|
|
|
try {
|
2015-10-21 23:25:24 +00:00
|
|
|
result = transform(data.sourceCode, data.filename, data.options);
|
2015-02-19 01:43:36 +00:00
|
|
|
} catch (e) {
|
2015-05-22 19:16:15 +00:00
|
|
|
callback(e);
|
|
|
|
return;
|
2015-02-19 01:43:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
callback(null, result);
|
|
|
|
};
|
|
|
|
|
|
|
|
// export for use in jest
|
|
|
|
module.exports.transform = transform;
|