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');
|
|
|
|
const inlineRequires = require('fbjs-scripts/babel/inline-requires');
|
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-09-19 22:20:25 +00:00
|
|
|
const plugins = [];
|
2015-08-15 22:59:37 +00:00
|
|
|
|
2015-11-10 02:30:31 +00:00
|
|
|
if (options.inlineRequires) {
|
2015-11-10 18:51:39 +00:00
|
|
|
plugins.push([inlineRequires]);
|
2015-08-15 22:59:37 +00:00
|
|
|
}
|
|
|
|
|
2015-09-19 22:20:25 +00:00
|
|
|
const result = babel.transform(src, {
|
2015-05-22 19:16:15 +00:00
|
|
|
retainLines: true,
|
|
|
|
compact: true,
|
|
|
|
comments: false,
|
2015-09-19 22:20:25 +00:00
|
|
|
filename,
|
2015-11-10 18:51:39 +00:00
|
|
|
plugins: plugins.concat([
|
2015-09-24 03:15:18 +00:00
|
|
|
// Keep in sync with packager/react-packager/.babelrc
|
2015-11-12 06:53:04 +00:00
|
|
|
'external-helpers-2',
|
2015-11-10 18:51:39 +00:00
|
|
|
'syntax-async-functions',
|
|
|
|
'syntax-class-properties',
|
|
|
|
'syntax-jsx',
|
|
|
|
'syntax-trailing-function-commas',
|
|
|
|
'transform-class-properties',
|
|
|
|
'transform-es2015-arrow-functions',
|
|
|
|
'transform-es2015-block-scoping',
|
|
|
|
'transform-es2015-classes',
|
|
|
|
'transform-es2015-computed-properties',
|
|
|
|
'transform-es2015-constants',
|
|
|
|
'transform-es2015-destructuring',
|
|
|
|
['transform-es2015-modules-commonjs', {strict: false, allowTopLevelThis: true}],
|
|
|
|
'transform-es2015-parameters',
|
|
|
|
'transform-es2015-shorthand-properties',
|
|
|
|
'transform-es2015-spread',
|
|
|
|
'transform-es2015-template-literals',
|
|
|
|
'transform-flow-strip-types',
|
|
|
|
'transform-object-assign',
|
|
|
|
'transform-object-rest-spread',
|
2015-11-10 18:51:51 +00:00
|
|
|
'transform-object-assign',
|
2015-11-10 18:51:39 +00:00
|
|
|
'transform-react-display-name',
|
|
|
|
'transform-react-jsx',
|
|
|
|
'transform-regenerator',
|
|
|
|
]),
|
2015-05-22 19:16:15 +00:00
|
|
|
sourceFileName: filename,
|
|
|
|
sourceMaps: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
2015-09-19 22:20:25 +00:00
|
|
|
code: result.code
|
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;
|