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

Commit

Permalink
fix(webpack): Reduce log output
Browse files Browse the repository at this point in the history
fixes #19
  • Loading branch information
hypery2k committed Nov 11, 2016
1 parent e34b5b8 commit 673fc99
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions etc/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ module.exports = function (config) {

webpackMiddleware: {
stats: {
chunks:false,
colors: true
}
},
Expand Down
17 changes: 16 additions & 1 deletion etc/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,21 @@ const METADATA = {
*/
var config = {

stats: {
hash: false,
version: false,
timings: false,
assets: false,
chunks: false,
modules: false,
reasons: false,
children: false,
source: false,
errors: true,
errorDetails: true,
warnings: false,
publicPath: false
},
/*
* Static metadata for index.html
*
Expand Down Expand Up @@ -86,7 +101,7 @@ var config = {
* See: http://webpack.github.io/docs/configuration.html#module
*/
module: {

// resolve https://github.com/holisticon/angular-common/issues/10
exprContextCritical: false,

Expand Down

0 comments on commit 673fc99

Please sign in to comment.