npm babel-plugin-transform-es2015-modules-commonjs 6.5.2
v6.5.2

latest releases: 6.26.2, 7.0.0-beta.3, 7.0.0-beta.2...
8 years ago

6.5.2 (2016-02-12) "Who needs semicolons anyway” ¯_(ツ)_/¯

Changes to note:

  • Reverting the class properties semicolon parser error.
  • Fix regression with plugin ordering with babel-register.

Spec Compliancy

  • babel-plugin-transform-class-properties, babylon

Bug Fix

  • babel-core, babel-register

  • babel-plugin-transform-es2015-spread

    // input
    super.method(...args);
    // wrong output
    super.method.apply(super, babelHelpers.toConsumableArray(args));
    // new fixed output
    super.method.apply(this, babelHelpers.toConsumableArray(args));
  • babel-plugin-transform-function-bind, babel-types

Documentation

  • babel-register
  • babel-plugin-transform-async-to-module-method, babel-plugin-transform-es2015-arrow-functions, babel-plugin-transform-es2015-classes, babel-plugin-transform-es2015-computed-properties, babel-plugin-transform-es2015-for-of, babel-plugin-transform-es2015-modules-commonjs, babel-plugin-transform-es2015-spread, babel-plugin-transform-es2015-template-literals, babel-plugin-transform-react-jsx, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-plugin-transform-strict-mode
    • #3345 Update all plugin readmes with options. (@hzoo)
  • #3352 Fix a typo. (@pra85)

Internal

  • babel
  • babylon
    • #3351 Add class properties test with a generator method that results in a p…. (@hzoo)
  • #3344 Travis: Remove 0.10, since it's covered by Circle. (@hzoo)
  • #3343 Travis CI: Switch from deprecated stable NodeJS to latest 4.x.x & 5.x.x. (@ntwb)
  • #3341 bin-version-check is unnecessary now. (@chicoxyzzy)
  • #3339 Know how to write good shell scripts. (@hzoo)

Don't miss a new babel-plugin-transform-es2015-modules-commonjs release

NewReleases is sending notifications on new releases.