(target: MigrationStats, source: MigrationStats)
| 317 | } |
| 318 | |
| 319 | function mergeStats(target: MigrationStats, source: MigrationStats) { |
| 320 | target.workspacesProcessed += source.workspacesProcessed |
| 321 | target.workspacesSkipped += source.workspacesSkipped |
| 322 | target.conflicts += source.conflicts |
| 323 | target.inserted += source.inserted |
| 324 | target.skippedExisting += source.skippedExisting |
| 325 | target.errors += source.errors |
| 326 | target.envVarFailures += source.envVarFailures |
| 327 | } |
| 328 | |
| 329 | async function resolveKey( |
| 330 | ref: RawKeyRef, |