ccgather 1.3.0 → 1.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.
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -395,7 +395,7 @@ async function sync(options) {
|
|
|
395
395
|
}
|
|
396
396
|
}
|
|
397
397
|
console.log(import_chalk4.default.gray("\u2500".repeat(40)));
|
|
398
|
-
console.log(import_chalk4.default.gray("\nView full leaderboard: https://ccgather.
|
|
398
|
+
console.log(import_chalk4.default.gray("\nView full leaderboard: https://ccgather.com/leaderboard\n"));
|
|
399
399
|
}
|
|
400
400
|
var import_chalk4, import_ora6;
|
|
401
401
|
var init_sync = __esm({
|
|
@@ -887,7 +887,7 @@ var LOGO_COMPACT = `
|
|
|
887
887
|
var TAGLINE = colors.muted(" Where Claude Code Developers Gather");
|
|
888
888
|
var SLOGAN = colors.dim(" Gather. Compete. Rise.");
|
|
889
889
|
function getVersionLine(version) {
|
|
890
|
-
return colors.dim(` v${version} \u2022 ccgather.
|
|
890
|
+
return colors.dim(` v${version} \u2022 ccgather.com`);
|
|
891
891
|
}
|
|
892
892
|
var box = {
|
|
893
893
|
topLeft: "\u250C",
|
|
@@ -1326,7 +1326,7 @@ async function status(options) {
|
|
|
1326
1326
|
}
|
|
1327
1327
|
console.log();
|
|
1328
1328
|
console.log(colors.dim(" \u2500".repeat(25)));
|
|
1329
|
-
console.log(` ${colors.muted("View leaderboard:")} ${link("https://ccgather.
|
|
1329
|
+
console.log(` ${colors.muted("View leaderboard:")} ${link("https://ccgather.com/leaderboard")}`);
|
|
1330
1330
|
console.log();
|
|
1331
1331
|
}
|
|
1332
1332
|
|
|
@@ -1704,7 +1704,7 @@ async function setupAuto(options = {}) {
|
|
|
1704
1704
|
console.log(import_chalk3.default.cyan(" npx ccgather status"));
|
|
1705
1705
|
console.log();
|
|
1706
1706
|
console.log(import_chalk3.default.gray("View the leaderboard:"));
|
|
1707
|
-
console.log(import_chalk3.default.cyan(" https://ccgather.
|
|
1707
|
+
console.log(import_chalk3.default.cyan(" https://ccgather.com/leaderboard"));
|
|
1708
1708
|
console.log();
|
|
1709
1709
|
} catch (err) {
|
|
1710
1710
|
spinner.fail(import_chalk3.default.red("Authentication failed"));
|
|
@@ -1835,7 +1835,7 @@ async function scan(options = {}) {
|
|
|
1835
1835
|
// src/index.ts
|
|
1836
1836
|
init_config();
|
|
1837
1837
|
init_api();
|
|
1838
|
-
var VERSION = "1.
|
|
1838
|
+
var VERSION = "1.3.1";
|
|
1839
1839
|
var program = new import_commander.Command();
|
|
1840
1840
|
program.name("ccgather").description("Submit your Claude Code usage to the CCgather leaderboard").version(VERSION).option("-y, --yes", "Skip confirmation prompt").option("--auto", "Enable automatic sync on session end").option("--manual", "Disable automatic sync").option("--no-menu", "Skip interactive menu (direct submit)");
|
|
1841
1841
|
program.command("scan").description("Scan Claude Code usage and create ccgather.json").option("-a, --all", "Scan all-time usage (no date limit)").option("-d, --days <number>", "Number of days to scan (default: 30)", parseInt).action((opts) => scan(opts));
|