(context: InitializeContext)
| 5 | import type { InitializeContext } from "./context/initialize.js"; |
| 6 | |
| 7 | export const initialize = async (context: InitializeContext) => { |
| 8 | await ensureOutputDirExists(context); |
| 9 | await cleanOutputDir(context); |
| 10 | await traverseAndCollateSchemas(context); |
| 11 | }; |
no test coverage detected