ccgather 1.3.10 → 1.3.11

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -509,7 +509,7 @@ function getVersion() {
509
509
  const pkg2 = JSON.parse((0, import_fs.readFileSync)(pkgPath, "utf-8"));
510
510
  return pkg2.version;
511
511
  } catch {
512
- return "1.3.10";
512
+ return "1.3.11";
513
513
  }
514
514
  }
515
515
  var VERSION = getVersion();
@@ -823,8 +823,7 @@ async function submit(options) {
823
823
  const totalFiles = getSessionFileCount();
824
824
  if (totalFiles > 0) {
825
825
  console.log(`
826
- ${colors.muted("Scanning")} ${colors.white(totalFiles.toString())} ${colors.muted("sessions...")}
827
- `);
826
+ ${colors.muted("Scanning")} ${colors.white(totalFiles.toString())} ${colors.muted("sessions...")}`);
828
827
  const scannedData = scanUsageData({
829
828
  onProgress: (current, total) => {
830
829
  progressBar(current, total, "Scanning");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccgather",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "description": "CLI tool for syncing Claude Code usage data to CCgather leaderboard",
5
5
  "bin": {
6
6
  "ccgather": "dist/index.js",