(dir?: string)
| 76 | const LEGACY_CRON_FILE_REL = join('.claude', 'scheduled_tasks.json') |
| 77 | |
| 78 | function getLegacyCronFilePath(dir?: string): string { |
| 79 | return join(dir ?? getProjectRoot(), LEGACY_CRON_FILE_REL) |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Path to the canonical cron file. `dir` defaults to getProjectRoot() — pass |
no test coverage detected