Skip to content

Commit

Permalink
deleted some trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubfiala committed Dec 25, 2016
1 parent 80a97d1 commit 721adca
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions webpack.config.js
Expand Up @@ -14,17 +14,17 @@ module.exports = {
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false,
},
}),
warnings: false
}
})
],
module: {
loaders: [
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
loaders: ['babel?presets[]=es2015', 'eslint?fix=true'],
loaders: ['babel?presets[]=es2015', 'eslint?fix=true']
}
],
]
}
};

0 comments on commit 721adca

Please sign in to comment.