(root: string, name: string, lines: readonly string[])
| 282 | } |
| 283 | |
| 284 | async function writeFlat(root: string, name: string, lines: readonly string[]): Promise<void> { |
| 285 | await writeFile(path.join(root, name), lines.join('\n')); |
| 286 | } |
| 287 | |
| 288 | async function writeFlatOrSubdirSkill( |
| 289 | root: string, |
no test coverage detected