8.0.0-beta.1
Pre-release
Pre-release
💥BREAKING CHANGE
The babelrc
option was changed. It now only accepts true
or false
as valid option (similar to other babel packages) and does not allow setting a string. If you previously had a filename specified you need to change to extends
{
loader: 'babel-loader',
options: {
- babelrc: 'path/to/.babelrc',
+ babelrc: false,
+ extends: 'path/to/.babelrc',
},
}
🐛 Bug Fix
- Support webpack 4.0 (#550) (@lencioni)
- fix compatibility with @babel/core option check when inputSourceMap null (#538) (@Delagen)
- fix babelrc option behaviour (#583) (@danez)
- use async babel transform (#584) (@michael-ciniawsky)
📝 Documentation
- README: document babelrc option (#442) (@jedwards1211)