Skip to content

Commit 3e65a4a

Browse files
authored
feat: clarify "No errors found." message (#20)
1 parent ac3989b commit 3e65a4a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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(pc.green('No errors found.'));
71+
config.logger.log(pc.green('No TypeScript errors found.'));
7272
}
7373

7474
// report issues to dev-server (overlay), if it's listening

test/e2e-legacy/driver/webpack-dev-server-driver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function createWebpackDevServerDriver(
5757
process.stdout.on('data', (data) => {
5858
const content = stripAnsi(data.toString());
5959

60-
if (async && content.includes('No errors found.')) {
60+
if (async && content.includes('No TypeScript errors found.')) {
6161
noErrorsListener.resolve();
6262
}
6363

0 commit comments

Comments
 (0)