Skip to content

Commit

Permalink
Merge pull request #140 from arunoda/patch-1
Browse files Browse the repository at this point in the history
Fix duplicate errors on the client overlay
  • Loading branch information
glenjamin committed Nov 7, 2016
2 parents 04f953d + 14d1ffc commit e0a0c46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion middleware.js
Expand Up @@ -74,7 +74,7 @@ function createEventStream(heartbeat) {

function publishStats(action, statsResult, eventStream, log) {
// For multi-compiler, stats will be an object with a 'children' array of stats
var bundles = extractBundles(statsResult.toJson());
var bundles = extractBundles(statsResult.toJson({ errorDetails: false }));
bundles.forEach(function(stats) {
if (log) {
log("webpack built " + (stats.name ? stats.name + " " : "") +
Expand Down

0 comments on commit e0a0c46

Please sign in to comment.