(prefix: string, e: ConsoleEntry)
| 337 | } |
| 338 | |
| 339 | function formatConsoleEntry(prefix: string, e: ConsoleEntry): string { |
| 340 | return ` ${prefix} ${e.text}${e.line ? c.dim(` (line ${e.line})`) : ""}`; |
| 341 | } |
| 342 | |
| 343 | function formatTotals( |
| 344 | errors: ConsoleEntry[], |