Skip to content

v6.18.2

Compare
Choose a tag to compare
@hzoo hzoo released this 01 Nov 21:34
· 8969 commits to main since this release

v6.18.2 (2016-11-01)

Weird publishing issue with v6.18.1, same release.

馃悰 Bug Fix

  • babel-core

The error message was actually invalid!

Invalid:
  { "presets": [{ "option": "value" }] }
Valid:
  {
    "presets": [
      ["presetName", { "option": "value" }] // the preset should be wrapped in `[ ]`
    ]
  }

馃彔 Internal

  • babel-helper-fixtures, babel-helper-transform-fixture-test-runner
    • #4797 Allow relative paths in babelrc options in options.json. (@hzoo)
  • Other
  • babel-plugin-transform-async-to-generator
    • #4793 Fix async-to-generator/object-method-with-arrows line endings. (@jridgewell)

Commiters: 4