coder-config 0.50.8-beta → 0.51.0
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/lib/loops.js +3 -2
- package/package.json +1 -1
package/lib/constants.js
CHANGED
package/lib/loops.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
const fs = require('fs');
|
|
6
6
|
const path = require('path');
|
|
7
|
-
|
|
7
|
+
// Lazy require to avoid circular dependency (heartbeat.js requires loops.js)
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* Get loops directory path
|
|
@@ -686,7 +686,8 @@ function loopConfig(installDir, updates = null) {
|
|
|
686
686
|
if (dotKeys.length > 0) {
|
|
687
687
|
// Initialize heartbeat config with defaults if not present
|
|
688
688
|
if (!data.config.heartbeat) {
|
|
689
|
-
|
|
689
|
+
const { getDefaultHeartbeatConfig } = require('./heartbeat');
|
|
690
|
+
data.config.heartbeat = getDefaultHeartbeatConfig();
|
|
690
691
|
}
|
|
691
692
|
for (const key of dotKeys) {
|
|
692
693
|
if (key.startsWith('heartbeat.')) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coder-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.51.0",
|
|
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",
|