mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
fix(compiler-cli): don't join errors with comma (#19331)
This commit is contained in:
parent
2e1fec17f5
commit
e889c68aff
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ export function formatDiagnostics(options: api.CompilerOptions, diags: Diagnosti
|
|||
return res;
|
||||
}
|
||||
})
|
||||
.join();
|
||||
.join('');
|
||||
} else
|
||||
return '';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue