ccgather 1.2.0 → 1.2.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 +4 -4
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1052,7 +1052,7 @@ async function submitToServer(username, data) {
|
|
|
1052
1052
|
}
|
|
1053
1053
|
}
|
|
1054
1054
|
async function submit(options) {
|
|
1055
|
-
printCompactHeader("1.2.
|
|
1055
|
+
printCompactHeader("1.2.1");
|
|
1056
1056
|
console.log(header("Submit Usage Data", "\u{1F4E4}"));
|
|
1057
1057
|
const spinner = (0, import_ora.default)({
|
|
1058
1058
|
text: "Detecting GitHub username...",
|
|
@@ -1226,7 +1226,7 @@ async function status(options) {
|
|
|
1226
1226
|
return;
|
|
1227
1227
|
}
|
|
1228
1228
|
spinner?.succeed(colors.success("Status retrieved"));
|
|
1229
|
-
printCompactHeader("1.2.
|
|
1229
|
+
printCompactHeader("1.2.1");
|
|
1230
1230
|
console.log(header("Your CCgather Stats", "\u{1F4CA}"));
|
|
1231
1231
|
const levelInfo = getLevelInfo(stats.totalTokens);
|
|
1232
1232
|
const medal = getRankMedal(stats.rank);
|
|
@@ -1711,7 +1711,7 @@ function displayResults(data) {
|
|
|
1711
1711
|
console.log();
|
|
1712
1712
|
}
|
|
1713
1713
|
async function scan() {
|
|
1714
|
-
printCompactHeader("1.2.
|
|
1714
|
+
printCompactHeader("1.2.1");
|
|
1715
1715
|
console.log(header("Scan Claude Code Usage", "\u{1F50D}"));
|
|
1716
1716
|
const spinner = (0, import_ora5.default)({
|
|
1717
1717
|
text: "Scanning JSONL files...",
|
|
@@ -1737,7 +1737,7 @@ async function scan() {
|
|
|
1737
1737
|
// src/index.ts
|
|
1738
1738
|
init_config();
|
|
1739
1739
|
init_api();
|
|
1740
|
-
var VERSION = "1.2.
|
|
1740
|
+
var VERSION = "1.2.1";
|
|
1741
1741
|
var program = new import_commander.Command();
|
|
1742
1742
|
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)");
|
|
1743
1743
|
program.command("scan").description("Scan Claude Code usage and create ccgather.json").action(scan);
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccgather",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "CLI tool for syncing Claude Code usage data to CCgather leaderboard",
|
|
5
5
|
"bin": {
|
|
6
|
-
"ccgather": "
|
|
7
|
-
"ccg": "
|
|
6
|
+
"ccgather": "dist/index.js",
|
|
7
|
+
"ccg": "dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
],
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
49
|
-
"url": "https://github.com/DHxYoon/CCgather"
|
|
49
|
+
"url": "git+https://github.com/DHxYoon/CCgather.git"
|
|
50
50
|
}
|
|
51
51
|
}
|