| 2 | import { mkdir, writeFile } from 'fs/promises'; |
| 3 | |
| 4 | export interface RunOptions { |
| 5 | cwd: string; |
| 6 | } |
| 7 | |
| 8 | export async function run(command: string, options: RunOptions) { |
| 9 | console.log(`Running ${command} in ${options.cwd}`); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…