ccclub 0.1.1 → 0.1.2
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 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -349,6 +349,7 @@ async function initCommand() {
|
|
|
349
349
|
console.log(` User: ${existing.displayName}`);
|
|
350
350
|
console.log(` Groups: ${existing.groups.join(", ") || "(none)"}`);
|
|
351
351
|
console.log(chalk3.dim('\n Run "ccclub rank" to see rankings'));
|
|
352
|
+
await ensureGlobalInstall();
|
|
352
353
|
return;
|
|
353
354
|
}
|
|
354
355
|
const rl = createInterface({ input: stdin, output: stdout });
|
|
@@ -658,7 +659,7 @@ async function createGroupCommand() {
|
|
|
658
659
|
|
|
659
660
|
// src/index.ts
|
|
660
661
|
var program = new Command();
|
|
661
|
-
program.name("ccclub").description("CCClub - Compare Claude Code usage with friends").version("0.1.
|
|
662
|
+
program.name("ccclub").description("CCClub - Compare Claude Code usage with friends").version("0.1.2");
|
|
662
663
|
program.command("init").description("Initialize CCClub (one-time setup)").action(initCommand);
|
|
663
664
|
program.command("join").description("Join a friend's group").argument("<invite-code>", "6-character invite code").action(joinCommand);
|
|
664
665
|
program.command("sync").description("Sync local usage data to server").option("-s, --silent", "No output (used by heartbeat)").action(syncCommand);
|