We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c999a13 commit d5e7e32Copy full SHA for d5e7e32
src/issue/issue-webpack-error.ts
@@ -1,6 +1,5 @@
1
import path from 'path';
2
3
-import chalk from 'chalk';
4
import * as webpack from 'webpack';
5
6
import type { FormatterPathType } from '../formatter';
@@ -26,7 +25,7 @@ class IssueWebpackError extends webpack.WebpackError {
26
25
: relativeToContext(issue.file, process.cwd());
27
28
if (issue.location) {
29
- this.file += `:${chalk.green.bold(formatIssueLocation(issue.location))}`;
+ this.file += `:${formatIssueLocation(issue.location)}`;
30
}
31
32
0 commit comments