fluncle 0.217.0 → 0.218.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 +7 -6
- 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.218.0".trim() ? "0.218.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.218.0".trim() ? "0.218.0".trim() : "0.1.0";
|
|
2456
2456
|
});
|
|
2457
2457
|
|
|
2458
2458
|
// ../../packages/registry/src/index.ts
|
|
@@ -10471,14 +10471,15 @@ JSON field reference:
|
|
|
10471
10471
|
});
|
|
10472
10472
|
reach.command("collect").description("Collect + record one daily reach snapshot across every platform").option("--json", "Print JSON", false).action(async (options) => {
|
|
10473
10473
|
const { reachCollectCommand: reachCollectCommand2 } = await Promise.resolve().then(() => (init_admin_reach(), exports_admin_reach));
|
|
10474
|
-
const { collected, inserted, skipped } = await reachCollectCommand2();
|
|
10474
|
+
const { collected, failed, inserted, skipped } = await reachCollectCommand2();
|
|
10475
10475
|
if (options.json) {
|
|
10476
|
-
printJson({ collected, inserted, ok: true, skipped });
|
|
10476
|
+
printJson({ collected, failed, inserted, ok: true, skipped });
|
|
10477
10477
|
return;
|
|
10478
10478
|
}
|
|
10479
10479
|
const landed = collected.map((entry) => `${entry.platform} (${entry.metrics.join(", ")})`).join("; ");
|
|
10480
|
-
const missed = skipped.map((entry) => `${entry.platform}: ${entry.reason}`).join("; ");
|
|
10481
|
-
|
|
10480
|
+
const missed = skipped.map((entry) => `${entry.platform} (${entry.kind}): ${entry.reason}`).join("; ");
|
|
10481
|
+
const faults = failed.map((entry) => `${entry.platform}: ${entry.reason}`).join("; ");
|
|
10482
|
+
console.log(`Collected ${collected.length} platform(s), wrote ${inserted} new row(s).${landed ? ` Landed: ${landed}.` : ""}${missed ? ` Skipped: ${missed}.` : ""}${faults ? ` Failed: ${faults}.` : ""}`);
|
|
10482
10483
|
});
|
|
10483
10484
|
const backfill = configureCommand(admin.command("backfills").description("Backfill operator-only archives"));
|
|
10484
10485
|
backfill.action(() => {
|
package/package.json
CHANGED