ccclub 0.3.0 → 0.3.1

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1041,9 +1041,9 @@ function printGroup(data, code, period, config, showCache = false, showAll = fal
1041
1041
  if (hiddenCount > 0) {
1042
1042
  console.log(chalk6.dim(` ${hiddenCount} inactive member${hiddenCount > 1 ? "s" : ""} hidden \xB7 ccclub --all to show`));
1043
1043
  }
1044
- console.log(chalk6.dim(` Dashboard: ${config.apiUrl}/g/${code}`));
1045
- if (code !== "global" && data.group.memberCount < 5) {
1046
- console.log(chalk6.dim(" Invite: ") + chalk6.cyan.underline(`${config.apiUrl}/invite/${code}`));
1044
+ console.log(chalk6.dim(" Dashboard: ") + chalk6.blue(`${config.apiUrl}/g/${code}`));
1045
+ if (code !== "global") {
1046
+ console.log(chalk6.dim(" Invite: ") + chalk6.cyan.underline(`${config.apiUrl}/invite/${code}`));
1047
1047
  }
1048
1048
  if (hasPlan) {
1049
1049
  const me = data.rankings.find((r) => r.userId === config.userId);
@@ -1385,7 +1385,7 @@ async function hookCommand() {
1385
1385
  }
1386
1386
 
1387
1387
  // src/index.ts
1388
- var VERSION = "0.3.0";
1388
+ var VERSION = "0.3.1";
1389
1389
  startUpdateCheck(VERSION);
1390
1390
  var program = new Command();
1391
1391
  program.name("ccclub").description("Claude Code leaderboard among friends").version(VERSION, "-v, -V, --version");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccclub",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "description": "Claude Code leaderboard among friends",
6
6
  "bin": {