Skip to content

Commit

Permalink
Clarify message "No typescript errors found."
Browse files Browse the repository at this point in the history
When this message appears in context of webpack-dev-server,
it could be unclear what kind of errors (webpack build vs. typescript).
Sometimes there is a prior "Error checking in progress" message,
but not always, and may be far above the "No errors found."
  • Loading branch information
cben committed Oct 29, 2023
1 parent c999a13 commit b83bcbe
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(chalk.green('No typescript errors found.'));
}

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

0 comments on commit b83bcbe

Please sign in to comment.