| 284 | const BEGIN_MARKER = '.migration-in-progress'; |
| 285 | |
| 286 | export interface IdeasMigrationResult { |
| 287 | migrated: boolean; |
| 288 | legacyIdeasRoot: string; |
| 289 | legacyAdjacentRoot: string; |
| 290 | newRoot: string; |
| 291 | reason?: |
| 292 | | 'already-migrated' |
| 293 | | 'nothing-to-migrate' |
| 294 | | 'legacy-equals-new' |
| 295 | | 'recovered-partial'; |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * One-time migration from the legacy ~/.ft-bookmarks/automation/{ideas,adjacent}/ |
nothing calls this directly
no outgoing calls
no test coverage detected