Skip to content
This repository has been archived by the owner on May 24, 2021. It is now read-only.

Commit

Permalink
fix(babelrc): Fix invalid runtime configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-heimbuch committed Apr 28, 2017
1 parent 4fefdf5 commit d309623
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"presets": ["es2015"],
"plugins": ["lodash", "transform-runtime"],
"plugins": ["lodash"],
"env": {
"AVA": {
"plugins": [
"transform-runtime",
[
"babel-plugin-webpack-alias",
{ "config": "src/webpack.config.js" }
Expand Down
2 changes: 1 addition & 1 deletion src/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if (process.env.NODE_ENV === 'production') {
}
}),
new webpack.optimize.UglifyJsPlugin({
sourceMap: false,
sourceMap: true,
compress: {
warnings: false
}
Expand Down

0 comments on commit d309623

Please sign in to comment.