@basou/cli 0.35.0 → 0.35.1
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/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/program.js +7 -0
- package/dist/program.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -3415,6 +3415,8 @@ async function runImport(adapter, fn) {
|
|
|
3415
3415
|
skippedNoAction: readCount(json.skipped_no_action),
|
|
3416
3416
|
skippedAlreadyImported: readCount(json.skipped_already_imported),
|
|
3417
3417
|
skippedLegacyUntracked: readCount(json.skipped_legacy_untracked),
|
|
3418
|
+
skippedDecreased: readCount(json.skipped_decreased),
|
|
3419
|
+
skippedDuplicate: readCount(json.skipped_duplicate),
|
|
3418
3420
|
skippedUnverifiable: readCount(json.skipped_unverifiable),
|
|
3419
3421
|
eventTotal: readCount(json.event_total),
|
|
3420
3422
|
dryRun: json.dry_run === true
|
|
@@ -7596,6 +7598,11 @@ function describeImport(outcome) {
|
|
|
7596
7598
|
if (outcome.skippedAlreadyImported > 0)
|
|
7597
7599
|
parts.push(`${outcome.skippedAlreadyImported} already imported`);
|
|
7598
7600
|
if (outcome.skippedLegacyUntracked > 0) parts.push(`${outcome.skippedLegacyUntracked} legacy`);
|
|
7601
|
+
if (outcome.skippedNoAction > 0) parts.push(`${outcome.skippedNoAction} with no actions`);
|
|
7602
|
+
if (outcome.skippedDecreased > 0) parts.push(`${outcome.skippedDecreased} shrank`);
|
|
7603
|
+
if (outcome.skippedDuplicate > 0) parts.push(`${outcome.skippedDuplicate} duplicated`);
|
|
7604
|
+
if (outcome.skippedUnverifiable > 0)
|
|
7605
|
+
parts.push(`${outcome.skippedUnverifiable} unverifiable (run 'basou verify')`);
|
|
7599
7606
|
return `${outcome.adapter}: ${verb} ${parts.join(", ")}`;
|
|
7600
7607
|
}
|
|
7601
7608
|
function printRefreshSummary(result) {
|