Upgrade to Babel 7 (API)

    Support for Node.js 0.10 and 0.12 has been dropped as both of this versions are out of maintenance.

    Export changes

    medium

    Dropped use of plugin on Babel packages.This had to be used earlier to prevent a breaking change with our exports.If you import a Babel package in a library you may need to use .default when using require rather than import.

    @babel/core

    Changed ast to be false by default for performance (most tools aren't using it) babel/babel#7436.

    The publicly exposed but undocumented Pipeline class has been removed. Best to use the transformation methods exposed from @babel/core directly .

    The babel.util.* helper methods have been removed, and util.EXTENSIONS has been moved to babel.DEFAULT_EXTENSIONS babel/babel#5487.

    Calls to babel.transform or any other transform function may return null if the file matched an ignore pattern or failed to match an only pattern .

    The opts.basename option exposed on state.file.opts has been removed. If you need it, best to build it from opts.filename yourself babel/babel#5467.

    Removed resolveModuleSource. We recommend using babel-plugin-module-resolver@3's 'resolvePath' options

    Removed babel.analyse because it was just an alias for babel.transform

    Removed path.mark() since we didn't use it and it can be implemented in your own plugin.

    Removed babel.metadata since the generated plugin metadata is always included in the output result.

    Removed path.hub.file.addImport. You can use the @babel/helper-module-imports module instead.

    Config changes

    We've made some major changes to way config lookup works:

    By default when searching for .babelrc files for a given file, stop at package.json.

    For any particular file, Babel v6 keeps looking up the directory hierarchy until it finds a config file.This means your project might break because it uses a config file found outside the package root like inthe home directory.

    Adds support for a babel.config.js file along the lines of what Webpack does

    Because this would break how a monorepo works (including Babel itself), we are introducing a new config file,that basically removes the hierarchical nature of configs.

    Check the babel.config.js docs for more info:

    This file combined with the new overrides property and env lets you have a single config filethat can work for all the files in a project vs. multiple config files per folder.

    We also exclude node_modules by default and only look in the root unless you opt-in to settingan array of the .babelrcRoots option such as "babelrcRoots": [".", "node_modules/pkgA"]

    Plugins can check that it's loaded with a certain version of Babel.The API will expose an assertVersion method, where you can pass in semver.

    The declare helper is used to keep backwards compat with v6.

    1. import { declare } from "@babel/helper-plugin-utils";
    2. export default declare(api => {
    3. api.assertVersion(7);
    4. // ...
    5. });

    Babel plugins/presets

    It currently takes it as the first parameter the babel object, and plugin/preset options, and the dirname

    1. module.exports = function(api, options, dirname) {};

    This was first added in v6.14.1 (Nov 17, 2016) so it's unlikely anyone was using this.

    This catch-all option was removed; instead you should specifically decide which plugins you want to activate.

    We thought it would be a good idea for tools so they wouldn't have to constantly update their config but it also means we can't easily make a breaking change.

    Before:

    1. babelParser.parse(code, {
    2. plugins: ["*"],
    3. });

    You can get the old behavior using:

    1. babelParser.parse(code, {
    2. plugins: [
    3. "asyncGenerators",
    4. "classProperties",
    5. "decorators",
    6. "doExpressions",
    7. "dynamicImport",
    8. "exportExtensions",
    9. "flow",
    10. "functionBind",
    11. "functionSent",
    12. "jsx",
    13. "objectRestSpread",
    14. ],
    15. });

    See Babylon's plugin options.

    Renamed decorators plugin to decorators-legacy

    It has been renamed to align with the legacy option of @babel/plugin-proposal-decorators. A new decorators plugin has been implemented, which implements the new decorators proposal.

    The two versions of the proposals have different syntaxes, so it is highly reccomended to use decorators-legacy until the new semantics are implemented by Babel.

    Removed classConstructorCall plugin low

    @babel/traverse

    The reason behind this change is that declare var foo doesn't introduce a new local binding, but it represents a global one.

    getFunctionParent will no longer return Program, please use getProgramParent instead .

    To get the equivalent behavior, you'll need to make a change like

    1. - path.scope.getFunctionParent()
    2. + path.scope.getFunctionParent() || path.scope.getProgramParent()

    Path replacement/removal APIs now return an array of new paths low

    For instance, using , or Path#replaceWith will now always return an array of the newly inserted/replaced paths.

    1. const node = t.nullLiteral();
    2. const [replaced] = path.replaceWith(node);
    3. replace.node === node; // => true

    This is especially useful when inserting serveral nodes into some higher-up scope, since you can immediately call the Path APIs on the node's new Path.

    Babylon already parses "shebangs" (#!env node) but put's in a comment in the Program node.Now we are just creating an actual node for it.

    Add a new interpreter field to the Program node.

    1. extend interface Program {
    2. interpreter: InterpreterDirective;
    3. }

    Add the InterpreterDirective Node

    1. interface InterpreterDirective <: Node {
    2. type: "InterpreterDirective";
    3. value: string;
    4. }

    JSX and TS node builders (from @babel/types package) renamed

    The case has been changed: jsx and ts are now in lowercase.

    1. + t.jsxIdentifier()

    In general, we have differentiated the node types with TypeAnnotation for Flow and TSTypeAnnotation for TypeScript so for the shared type nodes, TypeScript has a TS prefix.

    .expression field removed from ArrowFunctionExpression

    The expression field was removed to eliminate two different sources of truth and needing plugins to manually keep them in sync. You can now simply check whether the function body is a BlockStatement or not:

    1. return {
    2. visitor: {
    3. ArrowFunctionExpression({ node }) {
    4. - if (node.expression) {
    5. + if (node.body.type !== "BlockStatement") {
    6. // () => foo;
    7. }
    8. }
    9. }
    10. };

    In previous versions tokens were always attached to the AST on the top-level. In the latest version of @babel/parser we removed this behavior and made it disabled by default to improve the performance of the parser. All usages in babel itself have been removed and @babel/generator is not using the tokens anymore for pretty printing.

    If your babel plugin uses tokens at the moment, evaluate if it is still necessary and try to remove the usage if possible. If your plugin really depends on getting tokens you can reactivate it but please only consider this if there is no other way as this will hurt users performance.

    To activate you need to set the tokens option of babylon to true. You can do this directly from your plugin.

    1. export default function() {
    2. return {
    3. manipulateOptions(opts, parserOpts) {
    4. parserOpts.tokens = true;
    5. },
    6. ...
    7. };
    8. }

    Renamed

    The following nodes have been renamed:

    Besides the AST-Nodes also all the corresponding functions in @babel/types have been renamed.

    1. import * as t from "@babel/types";
    2. return {
    3. - ExistentialTypeParam(path) {
    4. - const parent = path.findParent((path) => path.isExistentialTypeParam());
    5. - t.isExistentialTypeParam(parent);
    6. + ExistsTypeAnnotation(path) {
    7. + const parent = path.findParent((path) => path.isExistsTypeAnnotation());
    8. + t.isExistsTypeAnnotation(parent);
    9. - return t.existentialTypeParam();
    10. + return t.existsTypeAnnotation();
    11. },
    12. - NumericLiteralTypeAnnotation(path) {
    13. - const parent = path.findParent((path) => path.isNumericLiteralTypeAnnotation());
    14. - t.isNumericLiteralTypeAnnotation(parent);
    15. + NumberLiteralTypeAnnotation(path) {
    16. + const parent = path.findParent((path) => path.isNumberLiteralTypeAnnotation());
    17. + t.isNumberLiteralTypeAnnotation(parent);
    18. - return t.numericLiteralTypeAnnotation();
    19. + return t.numberLiteralTypeAnnotation();
    20. }
    21. };

    Replaced

    On the following AST-Nodes the value of the field has been changed from a simple string value to be its own AST-Node called Variance. #333

    The field is only available when enabling the flow plugin in babylon.

    • ObjectProperty
    • ObjectMethod
    • AssignmentProperty
    • ClassMethod
    • ClassProperty
    • PropertyThe type of the new Variance node looks like this:
    1. return {
    2. Property({ node }) {
    3. - if (node.variance === "plus") {
    4. + if (node.variance.kind === "plus") {
    5. ...
    6. - } else if (node.variance === "minus") {
    7. + } else if (node.variance.kind === "minus") {
    8. ...
    9. }
    10. };

    The location info of ObjectTypeIndexer has been changed to not include semicolons. This was done to align with the flow-parser and have the same location information.

    Example:

    1. var a: { [a: number]: string };
    1. {
    2. "type": "ObjectTypeIndexer",
    3. "start": 9,
    4. - "end": 29,
    5. + "end": 28,
    6. "loc": {
    7. "start": {
    8. "line": 1,
    9. "column": 9,
    10. },
    11. "end": {
    12. "line": 1,
    13. - "column": 29
    14. + "column": 28
    15. }
    16. }
    17. }

    Removal

    ForAwaitStatement

    The AST-Node ForAwaitStatement has been removed and is replace with the field await in the ForOfStatement node #349

    1. interface ForOfStatement <: ForInStatement {
    2. type: "ForOfStatement";
    3. + await: boolean;
    4. }
    1. return {
    2. - ForAwaitStatement(path) {
    3. - ...
    4. + ForOfStatement(path) {
    5. + if (path.node.await) {
    6. + ...
    7. + }
    8. }
    9. };

    RestProperty & SpreadProperty

    1. return {
    2. SpreadElement(path) {
    3. - ...
    4. - },
    5. - SpreadProperty(path) {
    6. - ...
    7. + if (path.parentPath.isObjectExpression()) {
    8. + ...
    9. + } else if (path.parentPath.isArrayExpression()) {
    10. + ...
    11. + }
    12. },
    13. RestElement(path) {
    14. - ...
    15. - },
    16. - RestProperty(path) {
    17. - ...
    18. + if (path.parentPath.isObjectPattern()) {
    19. + ...
    20. + } else if (path.parentPath.isArrayPattern()) {
    21. + ...
    22. + }
    23. }
    24. };

    See our upgrade PR for Babel and the for more information.