| 459 | // ─── Collect files ──────────────────────────────────────────────────────────── |
| 460 | |
| 461 | interface FileInfo { |
| 462 | absPath: string; |
| 463 | relPath: string; |
| 464 | enRelPath: string; |
| 465 | permalink: string; |
| 466 | frontmatter: Record<string, unknown>; |
| 467 | content: string; |
| 468 | } |
| 469 | |
| 470 | function collectLocaleFiles(enFiles: Map<string, { relPath: string; content: string }>): FileInfo[] { |
| 471 | const results: FileInfo[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected