ccgather 1.3.39 → 1.3.40

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
@@ -598,7 +598,7 @@ function getCurrentProjectName() {
598
598
 
599
599
  // src/lib/ui.ts
600
600
  var import_chalk = __toESM(require("chalk"));
601
- var VERSION = true ? "1.3.38" : "0.0.0";
601
+ var VERSION = true ? "1.3.40" : "0.0.0";
602
602
  var colors = {
603
603
  primary: import_chalk.default.hex("#DA7756"),
604
604
  // Claude coral
@@ -1403,7 +1403,7 @@ async function promptForUpdate(latestVersion) {
1403
1403
  console.log(` ${import_chalk3.default.cyan("\u2192")} Updating to ${import_chalk3.default.green(`ccgather@${latestVersion}`)}...`);
1404
1404
  console.log();
1405
1405
  const { spawn } = await import("child_process");
1406
- const child = spawn("npm", ["exec", "--yes", "--", `ccgather@${latestVersion}`], {
1406
+ const child = spawn("npx", [`ccgather@${latestVersion}`], {
1407
1407
  stdio: "inherit",
1408
1408
  shell: true
1409
1409
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccgather",
3
- "version": "1.3.39",
3
+ "version": "1.3.40",
4
4
  "description": "CLI tool for syncing Claude Code usage data to CCgather leaderboard",
5
5
  "bin": {
6
6
  "ccgather": "dist/index.js",