()
| 5 | import { outro, spinner } from '@clack/prompts'; |
| 6 | |
| 7 | export const assertGitRepo = async () => { |
| 8 | try { |
| 9 | await execa('git', ['rev-parse']); |
| 10 | } catch (error) { |
| 11 | throw new Error(error as string); |
| 12 | } |
| 13 | }; |
| 14 | |
| 15 | // const excludeBigFilesFromDiff = ['*-lock.*', '*.lock'].map( |
| 16 | // (file) => `:(exclude)${file}` |
no test coverage detected