ccclub 0.2.41 → 0.2.42
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 +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -879,7 +879,6 @@ async function printActivity(apiUrl, code, range) {
|
|
|
879
879
|
const user = active[i];
|
|
880
880
|
const buckets = allBuckets[i];
|
|
881
881
|
const spark = buckets.map((v) => {
|
|
882
|
-
if (v === 0) return " ";
|
|
883
882
|
const idx = Math.min(Math.floor(v / globalMax * SPARK_CHARS.length), SPARK_CHARS.length - 1);
|
|
884
883
|
return SPARK_CHARS[idx];
|
|
885
884
|
}).join("");
|
|
@@ -1105,7 +1104,7 @@ async function hookCommand() {
|
|
|
1105
1104
|
}
|
|
1106
1105
|
|
|
1107
1106
|
// src/index.ts
|
|
1108
|
-
var VERSION = "0.2.
|
|
1107
|
+
var VERSION = "0.2.42";
|
|
1109
1108
|
startUpdateCheck(VERSION);
|
|
1110
1109
|
var program = new Command();
|
|
1111
1110
|
program.name("ccclub").description("CCClub - Compare Claude Code usage with friends").version(VERSION);
|