ccclub 0.3.0 → 0.3.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 +4 -4
- 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(
|
|
1045
|
-
if (code !== "global"
|
|
1046
|
-
console.log(chalk6.dim(" Invite:
|
|
1044
|
+
console.log(chalk6.dim(" Dashboard: ") + chalk6.green(`${config.apiUrl}/g/${code}`));
|
|
1045
|
+
if (code !== "global") {
|
|
1046
|
+
console.log(chalk6.dim(" Invite: ") + chalk6.hex("#d4935e").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.
|
|
1388
|
+
var VERSION = "0.3.2";
|
|
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");
|