This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Releases: trayio/babel-plugin-webpack-alias
Releases · trayio/babel-plugin-webpack-alias
v2.1.2
v2.1.1
v2.1.0
Code coverage + `babel-register` fix
This adds the code coverage version and babel-register
support. It is released as a major version because it might break projects.
Support for webpack's multicompile feature
v1.8.4
This version is exactly like v1.8.2 as v1.8.3 was breaking projects using babel-register
.
v1.8.3
Includes the code for better code coverage but this release won't work with babel-register
, it's fixed in subsequent versions
Support for resolve.extensions
ES6 webpack config support
Added support for webpack configurations written in ES6 (#12)
v1.6.0
We now support environment variables in config paths:
{
"presets":[ "react", "es2015", "stage-0" ],
"env": {
"test": {
"plugins": [
[ "babel-plugin-webpack-alias", {
"config": "${PWD}/webpack.config.test.js"
}
]
]
}
}
}
And run with:
$ PWD=$(pwd) NODE_ENV=test ava