(serviceName: string)
| 118 | * image locally), so the two agree on a single name per service. |
| 119 | */ |
| 120 | export function devImageTag(serviceName: string): string { |
| 121 | const safe = serviceName.toLowerCase().replace(/[^a-z0-9-_.]/g, '-'); |
| 122 | return `vercel-dev/${safe || 'service'}:dev`; |
| 123 | } |
| 124 | |
| 125 | export interface RunResult { |
| 126 | stdout: string; |
no test coverage detected