(errors?: string[])
| 538 | } |
| 539 | |
| 540 | function printErrors(errors?: string[]) { |
| 541 | for (const error of errors ?? []) { |
| 542 | log.error(`${chalkError("Error:")} ${error}`); |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | function printWarnings(warnings?: string[]) { |
| 547 | for (const warning of warnings ?? []) { |
no test coverage detected
searching dependent graphs…