| 3 | import { PackageToDistribution } from './distribution'; |
| 4 | |
| 5 | export interface BuildFlags { |
| 6 | channel: 'stable' | 'beta' | 'internal' | 'canary'; |
| 7 | mode: 'development' | 'production'; |
| 8 | } |
| 9 | |
| 10 | export function getBuildConfig( |
| 11 | pkg: Package, |
nothing calls this directly
no outgoing calls
no test coverage detected