(file)
| 5 | import afterPackPrune from './after-pack-prune.cjs'; |
| 6 | |
| 7 | async function touch(file) { |
| 8 | await mkdir(path.dirname(file), { recursive: true }); |
| 9 | await writeFile(file, 'x'); |
| 10 | } |
| 11 | |
| 12 | async function exists(file) { |
| 13 | try { |
no test coverage detected