()
| 326 | * Read all registry entries. Exported for `@cremini/skillpack-node`. |
| 327 | */ |
| 328 | export function readAll(): RegistryEntry[] { |
| 329 | return listEntryFiles() |
| 330 | .map((entryPath) => readEntryFile(entryPath)) |
| 331 | .filter((entry): entry is RegistryEntry => entry !== null); |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * Check whether a pid is still alive. |
no test coverage detected