Skip to content

Releases: power-assert-js/espower-babel

4.0.3

25 Mar 14:20
@azu azu
Compare
Choose a tag to compare

Performance Improvements

  • index: reduce detection cost (7948e92)

4.0.2

25 Mar 13:53
@azu azu
Compare
Choose a tag to compare
4.0.2

4.0.1

19 Dec 14:49
@azu azu
Compare
Choose a tag to compare

BugFix

  • Fixed an issue where espower-babel/guess didn't work when required in gulpfile.js #24

Performance Improvements

  • test: speeeed up testing (f611001)

4.0.0

13 Nov 07:11
@azu azu
Compare
Choose a tag to compare

Breaking Change/Features

Babel6 support (Fix #22 #21)

Babel 6 does not transform your code by default.
It means that you must set babel config by .babelrc file or babelrc option.

Example

A example that update to Babel 6 from Babel 5.

3.3.0

25 Aug 10:58
@azu azu
Compare
Choose a tag to compare

Bug Fixes

  • babelrc-util: fix handling of babelrc's only and ignore option (9c2b10b)

Support custom file extension

04 Jun 12:48
@azu azu
Compare
Choose a tag to compare

feat

  • Support mocha --compilers es6:espower-babel/guess #17

v3.1.0

10 May 03:54
@azu azu
Compare
Choose a tag to compare

feature

  • Source Map support #13

3.0.0: transform all files by default

09 May 15:05
@azu azu
Compare
Choose a tag to compare

Breaking Changes

  • Transform all files with Babel by default
    • exception: ignore node_modules by default

Do limit transform files by setting babelrc

require('espower-babel')({
    babelrc: {
        only: [
            "src/**/*.js"
        ]
    }
})

v2.1.0

2.0.0: Babel 5.x support

09 Apr 13:22
@azu azu
Compare
Choose a tag to compare

Breaking Change

  • Babel 5.x support

if you use it with Babel's experimental flag, change option to following that:

require('espower-babel')({
    babelrc: {
        stage: 0
    }
})