ccgather 1.3.49 → 1.3.51

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 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -382,7 +382,7 @@ var init_ui = __esm({
382
382
  "use strict";
383
383
  import_chalk = __toESM(require("chalk"));
384
384
  import_string_width = __toESM(require("string-width"));
385
- VERSION = true ? "1.3.48" : "0.0.0";
385
+ VERSION = true ? "1.3.50" : "0.0.0";
386
386
  colors = {
387
387
  primary: import_chalk.default.hex("#DA7756"),
388
388
  // Claude coral
@@ -1577,7 +1577,7 @@ async function promptForUpdate(latestVersion) {
1577
1577
  console.log(` ${import_chalk3.default.cyan("\u2192")} Updating to ${import_chalk3.default.green(`ccgather@${latestVersion}`)}...`);
1578
1578
  console.log();
1579
1579
  const { spawn } = await import("child_process");
1580
- const child = spawn("npx", [`ccgather@${latestVersion}`], {
1580
+ const child = spawn("npx", ["--yes", `ccgather@${latestVersion}`], {
1581
1581
  stdio: "inherit",
1582
1582
  shell: true
1583
1583
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccgather",
3
- "version": "1.3.49",
3
+ "version": "1.3.51",
4
4
  "description": "CLI tool for syncing Claude Code usage data to CCgather leaderboard",
5
5
  "bin": {
6
6
  "ccgather": "dist/index.js",