| 1 | import { buildAllCaches } from "../cache/buildCache"; |
| 2 | |
| 3 | interface CacheOptions { |
| 4 | force: boolean; |
| 5 | headed: boolean; |
| 6 | directory: string; |
| 7 | } |
| 8 | |
| 9 | function parseArgs(args: string[]): CacheOptions { |
| 10 | const options: CacheOptions = { |
nothing calls this directly
no outgoing calls
no test coverage detected