ccsini 0.1.67 → 0.1.69
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 +8 -5
- 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.69";
|
|
28062
28062
|
|
|
28063
28063
|
// src/commands/init.ts
|
|
28064
28064
|
init_source();
|
|
@@ -32460,10 +32460,13 @@ Update failed. Try manually:`);
|
|
|
32460
32460
|
console.log(`
|
|
32461
32461
|
Updated to v${latest}`);
|
|
32462
32462
|
try {
|
|
32463
|
-
|
|
32464
|
-
|
|
32465
|
-
|
|
32466
|
-
|
|
32463
|
+
await installHooks(getClaudeDir());
|
|
32464
|
+
console.log("Hooks upgraded.");
|
|
32465
|
+
} catch {}
|
|
32466
|
+
try {
|
|
32467
|
+
execSync2("ccsini daemon stop", { stdio: "ignore" });
|
|
32468
|
+
execSync2("ccsini daemon start", { stdio: "ignore" });
|
|
32469
|
+
console.log("Daemon restarted with new version.");
|
|
32467
32470
|
} catch {}
|
|
32468
32471
|
console.log("Restart your terminal to use the new version.");
|
|
32469
32472
|
});
|