(root: ResolvedOpenSpecRoot)
| 415 | } |
| 416 | |
| 417 | export function toRootOutput(root: ResolvedOpenSpecRoot): RootOutput { |
| 418 | return { |
| 419 | path: root.path, |
| 420 | source: root.source, |
| 421 | ...(root.storeId ? { store_id: root.storeId } : {}), |
| 422 | }; |
| 423 | } |
| 424 | |
| 425 | /** |
| 426 | * A store-selected root — explicit `--store` or the declared fallback. |
no outgoing calls
no test coverage detected