(outputs: string[])
| 1087 | } |
| 1088 | |
| 1089 | function extractLogs(outputs: string[]) { |
| 1090 | // Remove empty lines |
| 1091 | const cleanedOutputs = outputs.map((line) => line.trim()).filter((line) => line !== ""); |
| 1092 | |
| 1093 | return cleanedOutputs.map((line) => line.trim()).join("\n"); |
| 1094 | } |
| 1095 | |
| 1096 | async function compileProject( |
| 1097 | config: ResolvedConfig, |
no test coverage detected
searching dependent graphs…