coder-config 0.50.8-beta → 0.50.9-beta

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 CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.50.8-beta';
5
+ const VERSION = '0.50.9-beta';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
package/lib/loops.js CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  const fs = require('fs');
6
6
  const path = require('path');
7
- const { getDefaultHeartbeatConfig } = require('./heartbeat');
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
- data.config.heartbeat = getDefaultHeartbeatConfig();
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.50.8-beta",
3
+ "version": "0.50.9-beta",
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",