()
| 14 | } |
| 15 | |
| 16 | export function runtimePath(): string { |
| 17 | if (!isCompiled) { |
| 18 | return projectPath(); |
| 19 | } |
| 20 | |
| 21 | return join(configuration.happyHomeDir, 'runtime', packageJson.version); |
| 22 | } |
| 23 | |
| 24 | export function isBunCompiled(): boolean { |
| 25 | return isCompiled; |
no test coverage detected