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

v1.6.0

Compare
Choose a tag to compare
@adriantoine adriantoine released this 05 Aug 18:26
· 72 commits to master since this release

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