(entries: list[VersionEntry])
| 210 | |
| 211 | |
| 212 | def render_versions(entries: list[VersionEntry]) -> list[dict[str, str]]: |
| 213 | return [ |
| 214 | { |
| 215 | "display-name": entry.display_name, |
| 216 | "path": entry.path, |
| 217 | "slug": entry.slug, |
| 218 | } |
| 219 | for entry in entries |
| 220 | ] |
| 221 | |
| 222 | |
| 223 | def component_dirs(fern_dir: Path) -> list[str]: |
no outgoing calls
no test coverage detected