sliftutils 1.4.76 → 1.4.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -112,6 +112,9 @@ export async function runPlannedMerge(config: {
|
|
|
112
112
|
} catch (e) {
|
|
113
113
|
sourceOk[si] = false;
|
|
114
114
|
log(`${magenta("skipped")} ${config.sourceNames[si]}: ${(e as Error).message}`);
|
|
115
|
+
// Stack goes straight to console (not the buffered step log) so the merge summary stays
|
|
116
|
+
// readable but we can still trace where the failure came from.
|
|
117
|
+
console.log(`${config.collectionName} skipped ${config.sourceNames[si]}:`, (e as Error).stack || e);
|
|
115
118
|
}
|
|
116
119
|
return map;
|
|
117
120
|
}));
|