fluncle 0.165.0 → 0.166.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 -4
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -561,7 +561,7 @@ function parseVersion(version) {
|
|
|
561
561
|
var currentVersion;
|
|
562
562
|
var init_version = __esm(() => {
|
|
563
563
|
init_output();
|
|
564
|
-
currentVersion = "0.
|
|
564
|
+
currentVersion = "0.166.0".trim() ? "0.166.0".trim() : "0.1.0";
|
|
565
565
|
});
|
|
566
566
|
|
|
567
567
|
// src/update-notifier.ts
|
|
@@ -2229,7 +2229,7 @@ function parseVersion2(version) {
|
|
|
2229
2229
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2230
2230
|
var init_version2 = __esm(() => {
|
|
2231
2231
|
init_output();
|
|
2232
|
-
currentVersion2 = "0.
|
|
2232
|
+
currentVersion2 = "0.166.0".trim() ? "0.166.0".trim() : "0.1.0";
|
|
2233
2233
|
});
|
|
2234
2234
|
|
|
2235
2235
|
// ../../packages/registry/src/index.ts
|
|
@@ -9279,11 +9279,12 @@ function addAdminCommands(program2) {
|
|
|
9279
9279
|
printJson(summary);
|
|
9280
9280
|
return;
|
|
9281
9281
|
}
|
|
9282
|
+
const counts = `${summary.refreshed} refreshed, ${summary.minted} minted, ${summary.editionOnly} edition-only, ${summary.unchanged} unchanged, ${summary.failed} failed`;
|
|
9282
9283
|
if (summary.switchOff) {
|
|
9283
|
-
console.log(
|
|
9284
|
+
console.log(`Frontier minting is paused (the kill switch is closed) \u2014 editions written, Spotify skipped. Walked ${summary.total} user(s): ${counts}.`);
|
|
9284
9285
|
return;
|
|
9285
9286
|
}
|
|
9286
|
-
console.log(`Walked ${summary.total}
|
|
9287
|
+
console.log(`Walked ${summary.total} user(s): ${counts}.`);
|
|
9287
9288
|
});
|
|
9288
9289
|
frontier.command("status").description("Whether Frontier minting is open (the kill switch's state)").option("--json", "Print JSON", false).action(async (options) => {
|
|
9289
9290
|
const { frontierStatusCommand: frontierStatusCommand2 } = await Promise.resolve().then(() => (init_admin_frontier(), exports_admin_frontier));
|
package/package.json
CHANGED