(slug: string, fileAbs: string)
| 326 | } |
| 327 | |
| 328 | const stagedPathFor = (slug: string, fileAbs: string) => { |
| 329 | const base = path.basename(fileAbs) |
| 330 | return path.join(STAGE_DIR, REGISTRY_STYLE, slug, base) |
| 331 | } |
| 332 | |
| 333 | type FilePage = { type: 'registry:page'; path: string; target: string; content?: string } |
| 334 | type FileOther = { |