ccgather 1.3.28 → 1.3.29

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 +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1186,7 +1186,7 @@ async function promptForUpdate(latestVersion) {
1186
1186
  console.log(` ${import_chalk3.default.cyan("\u2192")} Running ${import_chalk3.default.cyan("npx ccgather@latest")}...`);
1187
1187
  console.log();
1188
1188
  const { spawn } = await import("child_process");
1189
- const child = spawn("npx", ["ccgather@latest"], {
1189
+ const child = spawn("npx", ["--yes", "ccgather@latest"], {
1190
1190
  stdio: "inherit",
1191
1191
  shell: true
1192
1192
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccgather",
3
- "version": "1.3.28",
3
+ "version": "1.3.29",
4
4
  "description": "CLI tool for syncing Claude Code usage data to CCgather leaderboard",
5
5
  "bin": {
6
6
  "ccgather": "dist/index.js",