ccclub 0.2.82 → 0.2.84
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1175,6 +1175,8 @@ async function profileCommand(options) {
|
|
|
1175
1175
|
console.log(` Plan: ${profile.plan ? PLAN_LABELS[profile.plan] || profile.plan : chalk7.dim("(not set)")}`);
|
|
1176
1176
|
console.log(` URL: ${profile.url || chalk7.dim("(not set)")}`);
|
|
1177
1177
|
console.log();
|
|
1178
|
+
console.log(chalk7.dim(" Update: ccclub profile --name <name> --avatar <url> --public"));
|
|
1179
|
+
console.log();
|
|
1178
1180
|
} catch (err) {
|
|
1179
1181
|
spinner2.fail(`Error: ${formatFetchError(err)}`);
|
|
1180
1182
|
}
|
|
@@ -1403,7 +1405,7 @@ async function hookCommand() {
|
|
|
1403
1405
|
}
|
|
1404
1406
|
|
|
1405
1407
|
// src/index.ts
|
|
1406
|
-
var VERSION = "0.2.
|
|
1408
|
+
var VERSION = "0.2.84";
|
|
1407
1409
|
startUpdateCheck(VERSION);
|
|
1408
1410
|
var program = new Command();
|
|
1409
1411
|
program.name("ccclub").description("Claude Code leaderboard among friends").version(VERSION, "-v, -V, --version");
|