mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
Upgraded from Babel 6 to Babel 7. The only significant change seems to be the way `@babel/plugin-transform-classes` handles classes differently from `babel-plugin-transform-es2015-classes`. In regular mode, the former injects a `_createClass` function that increases the bundle size, and in the latter it removes the safeguard checks. However, this is okay because we don't all classes in new features, and we want to deprecate class usage in the future in the react repo. Co-authored-by: Luna Ruan <luna@fb.com> Co-authored-by: Abdul Rauf <abdulraufmujahid@gmail.com> Co-authored-by: Maksim Markelov <maks-markel@mail.ru>
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* 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 helperModuleImports = require('@babel/helper-module-imports');
|
|
|
|
module.exports = function autoImporter(babel) {
|
|
function getAssignIdent(path, file, state) {
|
|
if (state.id) {
|
|
return state.id;
|
|
}
|
|
state.id = helperModuleImports.addDefault(path, 'object-assign', {
|
|
nameHint: 'assign',
|
|
});
|
|
return state.id;
|
|
}
|
|
|
|
return {
|
|
pre: function() {
|
|
// map from module to generated identifier
|
|
this.id = null;
|
|
},
|
|
|
|
visitor: {
|
|
CallExpression: function(path, file) {
|
|
if (path.get('callee').matchesPattern('Object.assign')) {
|
|
// generate identifier and require if it hasn't been already
|
|
const id = getAssignIdent(path, file, this);
|
|
path.node.callee = id;
|
|
}
|
|
},
|
|
|
|
MemberExpression: function(path, file) {
|
|
if (path.matchesPattern('Object.assign')) {
|
|
const id = getAssignIdent(path, file, this);
|
|
path.replaceWith(id);
|
|
}
|
|
},
|
|
},
|
|
};
|
|
};
|