()
| 61 | } |
| 62 | |
| 63 | export function getReadmePath(): string { |
| 64 | if (isElectron) { |
| 65 | if (isElectronAndDev) { |
| 66 | if (isRunningInErbDll()) { |
| 67 | return path.join(__dirname, "../", "../", "README.md"); |
| 68 | } |
| 69 | } |
| 70 | return path.join(__dirname, "README.md"); |
| 71 | } |
| 72 | return path.join(process.cwd(), "README.md"); |
| 73 | } |
| 74 | |
| 75 | export function getInputFilePath(arg1: string): string { |
| 76 | if (isElectron) { |
no test coverage detected