Skip to content

Commit

Permalink
Merge c001aa1 into e2462fa
Browse files Browse the repository at this point in the history
  • Loading branch information
mems committed Jul 10, 2018
2 parents e2462fa + c001aa1 commit 5788995
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/gulp-uglify-error.js
Expand Up @@ -8,7 +8,8 @@ gulpUglifyError.prototype.toString = function() {
return (
makeErrorCause.BaseError.prototype.toString.call(this) +
(this.fileName ? '\nFile: ' + this.fileName : '') +
(cause.line ? '\nLine: ' + cause.line : '')
(cause.line ? '\nLine: ' + cause.line : '') +
(cause.col ? '\nCol: ' + cause.col : '')
);
};

Expand Down

0 comments on commit 5788995

Please sign in to comment.