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.
- package/dist/index.js +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.
|
|
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("
|
|
1406
|
+
const child = spawn("npx", [`ccgather@${latestVersion}`], {
|
|
1407
1407
|
stdio: "inherit",
|
|
1408
1408
|
shell: true
|
|
1409
1409
|
});
|