(warnings: Message[])
| 114 | export const logger = new Logger(); |
| 115 | |
| 116 | export function logBuildWarnings(warnings: Message[]) { |
| 117 | const logs = formatMessagesSync(warnings, { kind: "warning", color: true }); |
| 118 | for (const log of logs) console.warn(log); |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Logs all errors/warnings associated with an esbuild BuildFailure in the same |
no test coverage detected
searching dependent graphs…