ccsini 0.1.66 → 0.1.68
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 +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28058,7 +28058,7 @@ var {
|
|
|
28058
28058
|
} = import__.default;
|
|
28059
28059
|
|
|
28060
28060
|
// src/version.ts
|
|
28061
|
-
var VERSION = "0.1.
|
|
28061
|
+
var VERSION = "0.1.68";
|
|
28062
28062
|
|
|
28063
28063
|
// src/commands/init.ts
|
|
28064
28064
|
init_source();
|
|
@@ -32465,6 +32465,11 @@ Updated to v${latest}`);
|
|
|
32465
32465
|
console.log(`Repaired ${fixed} hook issue${fixed > 1 ? "s" : ""} in Claude Code settings.`);
|
|
32466
32466
|
}
|
|
32467
32467
|
} catch {}
|
|
32468
|
+
try {
|
|
32469
|
+
execSync2("ccsini daemon stop", { stdio: "ignore" });
|
|
32470
|
+
execSync2("ccsini daemon start", { stdio: "ignore" });
|
|
32471
|
+
console.log("Daemon restarted with new version.");
|
|
32472
|
+
} catch {}
|
|
32468
32473
|
console.log("Restart your terminal to use the new version.");
|
|
32469
32474
|
});
|
|
32470
32475
|
program2.command("uninstall").description("Uninstall ccsini from this machine").action(async () => {
|