Skip to content

v6.24.1

Compare
Choose a tag to compare
@hzoo hzoo released this 07 Apr 15:20
· 8681 commits to main since this release

v6.24.1 (2017-04-07)

馃悰 Bug Fix

  • babel-plugin-transform-regenerator
    • #5567 Update regenerator-transform to new version. (@aickin)

Fixes an issue when using async arrow functions with rest parameters (crazy!)

function test(fn) {
  return async (...args) => {
    return fn(...args);
  };
} 
  • babel-plugin-transform-es2015-function-name, babel-types
var obj = { await: function () {} }; // input
var obj = { await: function _await() {} };  // output

馃摑 Documentation

  • babel-generator
    • #5477 Update babel-generator documentation. (@xtuc)

馃彔 Internal

  • babel-generator
  • babel-helper-builder-react-jsx
    • #5486 Removes unused lodash dependency from babel-helper-builder-react-jsx. (@segphault)

Committers: 5