Skip to content

Commit

Permalink
Prepend "TS: " to "No errors found." message
Browse files Browse the repository at this point in the history
  • Loading branch information
cben authored and piotr-oles committed Oct 4, 2023
1 parent d3b462e commit fb5e553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/tap-done-to-async-get-issues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function tapDoneToAsyncGetIssues(
// print stats of the compilation
config.logger.log(statsFormatter(issues, stats));
} else {
config.logger.log(chalk.green('No errors found.'));
config.logger.log('TS: ' + chalk.green('No errors found.'));
}

// report issues to webpack-dev-server, if it's listening
Expand Down

0 comments on commit fb5e553

Please sign in to comment.