(outDir: string)
| 43 | }; |
| 44 | |
| 45 | const syncPublishedDocShots = (outDir: string): void => { |
| 46 | const shotDir = join(outDir, DOC_SHOT_DIR); |
| 47 | rmSync(shotDir, {force: true, recursive: true}); |
| 48 | if (existsSync(DOC_SHOT_SNAPSHOTS_DIR)) { |
| 49 | cpSync(DOC_SHOT_SNAPSHOTS_DIR, shotDir, {recursive: true}); |
| 50 | } |
| 51 | }; |
| 52 | |
| 53 | const rewritePublishedDocShots = (outDir: string): void => { |
| 54 | const refs = getDocShotRefs(outDir); |
no test coverage detected
searching dependent graphs…