(message: string)
| 47 | } |
| 48 | |
| 49 | export async function confirm(message: string) { |
| 50 | const response = await prompt(message); |
| 51 | if (response !== 'y') { |
| 52 | log('something went wrong. Exiting...'); |
| 53 | process.exit(1); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | export function getCommandLineArguments(): { |
| 58 | tag: string; |