Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #857 from zanata/quiet-frontend-build
Browse files Browse the repository at this point in the history
Prevent verbose output in frontend build
  • Loading branch information
davidmason committed Jun 12, 2015
2 parents 73f5867 + 51cda74 commit c30800a
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -31,7 +31,11 @@ module.exports = {
plugins: [
new webpack.DefinePlugin({ "global.GENTLY": false }),
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new webpack.optimize.UglifyJsPlugin(),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.optimize.DedupePlugin(),
new webpack.DefinePlugin({
"process.env": {
Expand Down

0 comments on commit c30800a

Please sign in to comment.