(subcommand: string, message: string)
| 700 | } |
| 701 | |
| 702 | function argvError(subcommand: string, message: string): ArtifactsCLIResult { |
| 703 | return { stdout: "", stderr: `artifacts ${subcommand}: ${message}\n`, exitCode: 129 }; |
| 704 | } |
| 705 | |
| 706 | function json(value: unknown): string { |
| 707 | return `${JSON.stringify(value, null, 2)}\n`; |
no outgoing calls
no test coverage detected