coder-config 0.46.4-beta → 0.46.6
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/lib/constants.js +1 -1
- package/package.json +1 -1
- package/ui/server.cjs +3 -4
package/lib/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coder-config",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.6",
|
|
4
4
|
"description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
|
|
5
5
|
"author": "regression.io",
|
|
6
6
|
"main": "config-loader.js",
|
package/ui/server.cjs
CHANGED
|
@@ -479,10 +479,9 @@ class ConfigUIServer {
|
|
|
479
479
|
if (req.method === 'POST') {
|
|
480
480
|
this.json(res, { success: true, message: 'Server restarting...' });
|
|
481
481
|
setTimeout(() => {
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
child.unref();
|
|
482
|
+
// Just exit - LaunchAgent will restart us from the plist config,
|
|
483
|
+
// which will pick up the newly installed version
|
|
484
|
+
console.log('[restart] Exiting for restart...');
|
|
486
485
|
process.exit(0);
|
|
487
486
|
}, 500);
|
|
488
487
|
return;
|