fluncle 0.215.0 → 0.216.0
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/bin/fluncle.mjs +5 -2
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -610,7 +610,7 @@ function parseVersion(version) {
|
|
|
610
610
|
var currentVersion;
|
|
611
611
|
var init_version = __esm(() => {
|
|
612
612
|
init_output();
|
|
613
|
-
currentVersion = "0.
|
|
613
|
+
currentVersion = "0.216.0".trim() ? "0.216.0".trim() : "0.1.0";
|
|
614
614
|
});
|
|
615
615
|
|
|
616
616
|
// src/update-notifier.ts
|
|
@@ -2452,7 +2452,7 @@ function parseVersion2(version) {
|
|
|
2452
2452
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2453
2453
|
var init_version2 = __esm(() => {
|
|
2454
2454
|
init_output();
|
|
2455
|
-
currentVersion2 = "0.
|
|
2455
|
+
currentVersion2 = "0.216.0".trim() ? "0.216.0".trim() : "0.1.0";
|
|
2456
2456
|
});
|
|
2457
2457
|
|
|
2458
2458
|
// ../../packages/registry/src/index.ts
|
|
@@ -11690,6 +11690,7 @@ async function runBackfillArtistEdges(options, backfillArtistEdgesCommand2) {
|
|
|
11690
11690
|
let cursor;
|
|
11691
11691
|
let dryRun = options.dryRun;
|
|
11692
11692
|
let edgesWritten = 0;
|
|
11693
|
+
let queueDepth = 0;
|
|
11693
11694
|
let scanned = 0;
|
|
11694
11695
|
let unmatchedNames = 0;
|
|
11695
11696
|
while (scanned < limit) {
|
|
@@ -11702,6 +11703,7 @@ async function runBackfillArtistEdges(options, backfillArtistEdgesCommand2) {
|
|
|
11702
11703
|
fullyMatched.push(...result.fullyMatched);
|
|
11703
11704
|
partiallyMatched.push(...result.partiallyMatched);
|
|
11704
11705
|
zeroMatched.push(...result.zeroMatched);
|
|
11706
|
+
queueDepth = result.queueDepth;
|
|
11705
11707
|
if (!options.json) {
|
|
11706
11708
|
const verb2 = result.dryRun ? "would write" : "wrote";
|
|
11707
11709
|
console.log(` \u2026visited ${result.scanned}; ${verb2} ${result.edgesWritten} edge(s); ${result.fullyMatchedCount} full, ${result.partiallyMatchedCount} partial, ${result.zeroMatchedCount} zero; ${result.unmatchedNames} name(s) unmatched`);
|
|
@@ -11720,6 +11722,7 @@ async function runBackfillArtistEdges(options, backfillArtistEdgesCommand2) {
|
|
|
11720
11722
|
ok: true,
|
|
11721
11723
|
partiallyMatched,
|
|
11722
11724
|
partiallyMatchedCount: partiallyMatched.length,
|
|
11725
|
+
queueDepth,
|
|
11723
11726
|
scanned,
|
|
11724
11727
|
unmatchedNames,
|
|
11725
11728
|
zeroMatched,
|
package/package.json
CHANGED