(buildxCacheTo: string | undefined)
| 95 | } |
| 96 | |
| 97 | export function isBuildxCacheToInline(buildxCacheTo: string | undefined): boolean { |
| 98 | if (!buildxCacheTo) { |
| 99 | return false; |
| 100 | } |
| 101 | return /type\s*=\s*inline/i.test(buildxCacheTo); |
| 102 | } |
| 103 | |
| 104 | export type ParsedAuthority = DevContainerAuthority; |
| 105 |
no outgoing calls
no test coverage detected