@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 +1 -1
- package/package.json +1 -1
- package/ui/server.cjs +2 -2
package/config-loader.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regression-io/claude-config",
|
|
3
|
-
"version": "0.14.
|
|
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(
|
|
1012
|
+
path.join(__dirname, '..', 'config-loader.js')
|
|
1013
1013
|
);
|
|
1014
1014
|
|
|
1015
1015
|
// Check npm for latest version
|