ccgather 2.0.38 → 2.0.39
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
|
@@ -266,7 +266,7 @@ var init_ui = __esm({
|
|
|
266
266
|
"use strict";
|
|
267
267
|
import_chalk = __toESM(require("chalk"));
|
|
268
268
|
import_string_width = __toESM(require("string-width"));
|
|
269
|
-
VERSION = true ? "2.0.
|
|
269
|
+
VERSION = true ? "2.0.39" : "0.0.0";
|
|
270
270
|
colors = {
|
|
271
271
|
primary: import_chalk.default.hex("#DA7756"),
|
|
272
272
|
// Claude coral
|
|
@@ -1384,7 +1384,7 @@ async function submit(options) {
|
|
|
1384
1384
|
console.log(` ${colors.muted(" send at least one message in Claude Code.")}`);
|
|
1385
1385
|
console.log();
|
|
1386
1386
|
const debugInfo = getSessionPathDebugInfo();
|
|
1387
|
-
console.log(` ${colors.dim("\u2500".repeat(
|
|
1387
|
+
console.log(` ${colors.dim("\u2500".repeat(48))}`);
|
|
1388
1388
|
console.log(` ${colors.muted("Searched paths:")}`);
|
|
1389
1389
|
for (const pathInfo of debugInfo.searchedPaths) {
|
|
1390
1390
|
const status = pathInfo.exists ? colors.success("\u2713") : colors.error("\u2717");
|
|
@@ -1492,7 +1492,7 @@ async function submit(options) {
|
|
|
1492
1492
|
console.log(
|
|
1493
1493
|
` ${colors.muted(`+ ${otherCount} other`)} \u26A1 ${colors.primary(formatNumber(di.otherDevicesTokens))} ${colors.dim("\u2502")} \u{1F4B0} ${colors.warning(formatCost(di.otherDevicesCost))}`
|
|
1494
1494
|
);
|
|
1495
|
-
console.log(` ${colors.dim("\u2500".repeat(
|
|
1495
|
+
console.log(` ${colors.dim("\u2500".repeat(45))}`);
|
|
1496
1496
|
console.log(
|
|
1497
1497
|
` ${colors.white.bold("Combined")} \u26A1 ${colors.primary(formatNumber(di.combinedTokens))} ${colors.dim("\u2502")} \u{1F4B0} ${colors.warning(formatCost(di.combinedCost))} ${colors.success("\u2713")}`
|
|
1498
1498
|
);
|
|
@@ -1547,7 +1547,7 @@ async function submit(options) {
|
|
|
1547
1547
|
}
|
|
1548
1548
|
console.log();
|
|
1549
1549
|
const leaderboardUrl = `https://ccgather.com/leaderboard?u=${username}`;
|
|
1550
|
-
console.log(` ${colors.dim("\u2500".repeat(
|
|
1550
|
+
console.log(` ${colors.dim("\u2500".repeat(48))}`);
|
|
1551
1551
|
console.log(` ${colors.muted("View full stats:")} ${link(leaderboardUrl)}`);
|
|
1552
1552
|
console.log();
|
|
1553
1553
|
console.log(
|