@regression-io/claude-config 0.14.24 → 0.14.25

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/config-loader.js CHANGED
@@ -19,7 +19,7 @@ const fs = require('fs');
19
19
  const path = require('path');
20
20
  const { execSync } = require('child_process');
21
21
 
22
- const VERSION = '0.14.24';
22
+ const VERSION = '0.14.25';
23
23
 
24
24
  class ClaudeConfigManager {
25
25
  constructor() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regression-io/claude-config",
3
- "version": "0.14.24",
3
+ "version": "0.14.25",
4
4
  "description": "Configuration management UI for Claude Code - manage MCPs, rules, commands, memory, and .claude folders",
5
5
  "author": "regression.io",
6
6
  "main": "config-loader.js",
package/ui/server.cjs CHANGED
@@ -1007,9 +1007,9 @@ class ConfigUIServer {
1007
1007
  // ===========================================================================
1008
1008
 
1009
1009
  async checkForUpdates() {
1010
- // Get current installed version
1010
+ // Get current installed version from the actual package location (parent of ui/)
1011
1011
  const installedVersion = this.getVersionFromFile(
1012
- path.join(this.manager.installDir, 'config-loader.js')
1012
+ path.join(__dirname, '..', 'config-loader.js')
1013
1013
  );
1014
1014
 
1015
1015
  // Check npm for latest version