| 13 | const REDIRECT_CODES = [301, 302, 303, 307, 308]; |
| 14 | |
| 15 | interface DownloadOptions { |
| 16 | branch?: string; |
| 17 | silent?: boolean; |
| 18 | forceLatest?: boolean; |
| 19 | } |
| 20 | |
| 21 | const getCacheDir = () => path.join(os.tmpdir(), "craftrn-ui-cli-cache"); |
| 22 | const getCachePath = (branch: string) => path.join(getCacheDir(), branch); |
nothing calls this directly
no outgoing calls
no test coverage detected