ccclub 0.1.7 → 0.1.8
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -523,7 +523,7 @@ async function rankCommand(options) {
|
|
|
523
523
|
console.log(table.toString());
|
|
524
524
|
console.log(chalk4.dim(`
|
|
525
525
|
Dashboard: ${config.apiUrl}/g/${groupCode}`));
|
|
526
|
-
console.log(chalk4.dim(" Data syncs automatically every hour. Run ccclub sync to update now."));
|
|
526
|
+
console.log(chalk4.dim(" Data syncs automatically ") + chalk4.white("every hour") + chalk4.dim(". Run ") + chalk4.white("ccclub sync") + chalk4.dim(" to update now."));
|
|
527
527
|
} catch (err) {
|
|
528
528
|
spinner.fail(`Error: ${err instanceof Error ? err.message : err}`);
|
|
529
529
|
}
|
|
@@ -685,7 +685,7 @@ async function ensureGlobalInstall() {
|
|
|
685
685
|
|
|
686
686
|
// src/index.ts
|
|
687
687
|
var program = new Command();
|
|
688
|
-
program.name("ccclub").description("CCClub - Compare Claude Code usage with friends").version("0.1.
|
|
688
|
+
program.name("ccclub").description("CCClub - Compare Claude Code usage with friends").version("0.1.8");
|
|
689
689
|
program.hook("postAction", () => ensureGlobalInstall());
|
|
690
690
|
program.command("init").description("Initialize CCClub (one-time setup)").action(initCommand);
|
|
691
691
|
program.command("join").description("Join a friend's group").argument("<invite-code>", "6-character invite code").action(joinCommand);
|