Skip to content

Commit d3f8f6a

Browse files
authored
fix: dont use white for issue location (#739)
Closes: #718
1 parent f23da17 commit d3f8f6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/formatter/webpack-formatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function createWebpackFormatter(formatter: Formatter): Formatter {
1515
const severity = issue.severity.toUpperCase();
1616

1717
if (issue.file) {
18-
let location = chalk.whiteBright.bold(relativeToContext(issue.file, process.cwd()));
18+
let location = chalk.bold(relativeToContext(issue.file, process.cwd()));
1919
if (issue.location) {
2020
location += ` ${chalk.green.bold(formatIssueLocation(issue.location))}`;
2121
}

0 commit comments

Comments
 (0)