(m: string)
| 35 | const startedAt = new Date().toISOString(); |
| 36 | const version = input.migratorVersion ?? DEFAULT_MIGRATOR_VERSION; |
| 37 | const log = (m: string): void => { |
| 38 | input.onProgress?.(m); |
| 39 | }; |
| 40 | |
| 41 | const config = input.scope.config |
| 42 | ? await migrateConfigStep({ sourceHome: input.source, targetHome: input.target }) |