(dir?: string)
| 85 | * SDK daemon, which has no bootstrap state). |
| 86 | */ |
| 87 | export function getCronFilePath(dir?: string): string { |
| 88 | return join(dir ?? getProjectRoot(), CRON_FILE_REL) |
| 89 | } |
| 90 | |
| 91 | function getReadableCronFilePath(dir?: string): string { |
| 92 | const canonicalPath = getCronFilePath(dir) |
no test coverage detected