()
| 305 | } |
| 306 | |
| 307 | function createEmptyStats(): MigrationStats { |
| 308 | return { |
| 309 | workspacesProcessed: 0, |
| 310 | workspacesSkipped: 0, |
| 311 | conflicts: 0, |
| 312 | inserted: 0, |
| 313 | skippedExisting: 0, |
| 314 | errors: 0, |
| 315 | envVarFailures: 0, |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | function mergeStats(target: MigrationStats, source: MigrationStats) { |
| 320 | target.workspacesProcessed += source.workspacesProcessed |
no outgoing calls
no test coverage detected