(...paths: string[])
| 29 | } |
| 30 | |
| 31 | export const exists = (...paths: string[]): boolean | never => { |
| 32 | const filePath = getWorkspacePath(...paths) |
| 33 | logger(`Check file exists: ${filePath}`) |
| 34 | return fs.existsSync(filePath) |
| 35 | } |
| 36 | |
| 37 | export const removeFile = (...paths: string[]) => { |
| 38 | const filePath = getWorkspacePath(...paths) |
no test coverage detected