()
| 11 | * and displays a helpful error message. |
| 12 | */ |
| 13 | export function getPaths() { |
| 14 | try { |
| 15 | return _getPaths() |
| 16 | } catch (e) { |
| 17 | if (isErrorWithMessage(e)) { |
| 18 | console.error(colors.error(e.message)) |
| 19 | } |
| 20 | |
| 21 | process.exit(1) |
| 22 | } |
| 23 | } |
no test coverage detected