()
| 48 | } |
| 49 | |
| 50 | export function getContinueUtilsPath(): string { |
| 51 | const utilsPath = path.join(getContinueGlobalPath(), ".utils"); |
| 52 | if (!fs.existsSync(utilsPath)) { |
| 53 | fs.mkdirSync(utilsPath); |
| 54 | } |
| 55 | return utilsPath; |
| 56 | } |
| 57 | |
| 58 | export function getGlobalContinueIgnorePath(): string { |
| 59 | const continueIgnorePath = path.join( |
no test coverage detected