Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Releases: trayio/babel-plugin-webpack-alias

v2.1.2

17 Nov 14:54
Compare
Choose a tag to compare

<a name"2.1.2">

2.1.2 (2016-11-17)

Bug Fixes

v2.1.1

08 Sep 10:31
Compare
Choose a tag to compare

<a name"2.1.1">

2.1.1 (2016-09-08)

Bug Fixes

v2.1.0

08 Sep 10:09
Compare
Choose a tag to compare

<a name"2.1.0">

2.1.0 (2016-09-08)

Bug Fixes

Features

  • build: Trying out semantic-release (ecb7d1af)
  • option: Added a noOutputExtension option (68602cbd)

Code coverage + `babel-register` fix

07 Sep 15:49
Compare
Choose a tag to compare

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

07 Sep 15:46
Compare
Choose a tag to compare

v1.8.4

07 Sep 15:48
Compare
Choose a tag to compare

This version is exactly like v1.8.2 as v1.8.3 was breaking projects using babel-register.

v1.8.3

07 Sep 15:47
Compare
Choose a tag to compare

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

08 Aug 11:24
Compare
Choose a tag to compare

This plugin now support the resolve.extensions webpack config! (#6) (#5)

ES6 webpack config support

08 Aug 10:39
Compare
Choose a tag to compare

Added support for webpack configurations written in ES6 (#12)

v1.6.0

05 Aug 18:26
Compare
Choose a tag to compare

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