Skip to content

Commit

Permalink
Removing 'string' suffix on each error line.
Browse files Browse the repository at this point in the history
This was introduced by commit 93f7830 and that was presumably unintentional.
  • Loading branch information
Oscar de Groot committed May 13, 2015
1 parent 6f84474 commit 8c925f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/handleWebpackResult.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = function handleWebpackResult(stats, webpackWarningFilters) {

var logErrorsByLine = function (errors) {
byLine(errors, function (err) {
console.log(" ", err, typeof err);
console.log(" ", err);
});
};

Expand Down

0 comments on commit 8c925f7

Please sign in to comment.