Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b83bcbe

Browse files
committedOct 29, 2023
Clarify message "No typescript errors found."
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."
1 parent c999a13 commit b83bcbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hooks/tap-done-to-async-get-issues.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function tapDoneToAsyncGetIssues(
6868
// print stats of the compilation
6969
config.logger.log(statsFormatter(issues, stats));
7070
} else {
71-
config.logger.log(chalk.green('No errors found.'));
71+
config.logger.log(chalk.green('No typescript errors found.'));
7272
}
7373

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

0 commit comments

Comments
 (0)
Please sign in to comment.