| 16 | } |
| 17 | |
| 18 | interface InitCliFlags { |
| 19 | force?: boolean; |
| 20 | name?: string; |
| 21 | useNpm?: boolean; |
| 22 | usePnpm?: boolean; |
| 23 | useYarn?: boolean; |
| 24 | useBun?: boolean; |
| 25 | install?: boolean; |
| 26 | git?: boolean; |
| 27 | } |
| 28 | |
| 29 | function onCancel(): never { |
| 30 | process.stdout.write(chalk.dim('\nCancelled.\n')); |
nothing calls this directly
no outgoing calls
no test coverage detected