(p: string)
| 26 | } |
| 27 | |
| 28 | const ensureDir = (p: string) => mkdirSync(p, { recursive: true }); |
| 29 | const resetDir = (p: string) => { if (existsSync(p)) rmSync(p, { recursive: true, force: true }); ensureDir(p); }; |
| 30 | |
| 31 | const contentDir = "content"; |
no outgoing calls
no test coverage detected
searching dependent graphs…