({
spinner,
name,
type
}: {
spinner: Spinner;
name: string;
type: 'pipe' | 'memory';
})
| 336 | } |
| 337 | |
| 338 | export function handleInvalidConfig({ |
| 339 | spinner, |
| 340 | name, |
| 341 | type |
| 342 | }: { |
| 343 | spinner: Spinner; |
| 344 | name: string; |
| 345 | type: 'pipe' | 'memory'; |
| 346 | }): void { |
| 347 | spinner.stop(`Failed to extract ${type} configuration from ${name}`); |
| 348 | p.log.error(`Invalid ${type} configuration`); |
| 349 | } |
| 350 | |
| 351 | export function handleDeploymentError({ |
| 352 | spinner, |
no outgoing calls
no test coverage detected