Skip to content

Commit c38fdf5

Browse files
committed
Don't attempt to create diagnostic message for compiler log line 'cannot make progress due to previous errors'
1 parent 6c414a5 commit c38fdf5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

server/src/utils.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,8 @@ export let parseCompilerLogOutput = async (
568568
tag: undefined,
569569
content: [],
570570
});
571+
} else if (line.startsWith("FAILED: cannot make progress due to previous errors.")) {
572+
// skip
571573
} else if (line.startsWith("FAILED:")) {
572574
// File with a self cycle
573575
parsedDiagnostics.push({

0 commit comments

Comments
 (0)