(filePath: string)
| 21 | type Task = () => Promise<void>; |
| 22 | |
| 23 | function assertMirrowFile(filePath: string): void { |
| 24 | if (path.extname(filePath) !== MIRROW_EXTENSION) { |
| 25 | throw new Error( |
| 26 | `Mirrow sources must use the ${MIRROW_EXTENSION} extension` |
| 27 | ); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | async function compileMirrowFile( |
| 32 | inputFile: string, |
no outgoing calls
no test coverage detected