coder-config 0.41.1 → 0.41.3

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.41.1';
5
+ const VERSION = '0.41.3';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coder-config",
3
- "version": "0.41.1",
3
+ "version": "0.41.3",
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",
@@ -22,10 +22,7 @@
22
22
  "prepublishOnly": "npm run build",
23
23
  "postinstall": "node scripts/postinstall.js",
24
24
  "test": "node --test test/*.test.js",
25
- "release": "./scripts/release.sh",
26
- "tauri:prepare": "node scripts/tauri-prepare.js",
27
- "tauri:dev": "npm run build && cargo tauri dev",
28
- "tauri:build": "npm run tauri:prepare && cargo tauri build"
25
+ "release": "./scripts/release.sh"
29
26
  },
30
27
  "keywords": [
31
28
  "claude",
@@ -16,7 +16,6 @@ const rootDir = path.join(__dirname, '..');
16
16
  const packageJsonPath = path.join(rootDir, 'package.json');
17
17
  const constantsPath = path.join(rootDir, 'lib', 'constants.js');
18
18
  const uiPackageJsonPath = path.join(rootDir, 'ui', 'package.json');
19
- const tauriConfigPath = path.join(rootDir, 'src-tauri', 'tauri.conf.json');
20
19
 
21
20
  // Read version from package.json (source of truth)
22
21
  const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
@@ -63,15 +62,4 @@ if (fs.existsSync(uiPackageJsonPath)) {
63
62
  }
64
63
  }
65
64
 
66
- // Update src-tauri/tauri.conf.json
67
- if (fs.existsSync(tauriConfigPath)) {
68
- const tauriConfig = JSON.parse(fs.readFileSync(tauriConfigPath, 'utf8'));
69
- if (tauriConfig.version !== version) {
70
- const oldVersion = tauriConfig.version;
71
- tauriConfig.version = version;
72
- fs.writeFileSync(tauriConfigPath, JSON.stringify(tauriConfig, null, 2) + '\n', 'utf8');
73
- console.log(` src-tauri/tauri.conf.json: ${oldVersion} -> ${version}`);
74
- }
75
- }
76
-
77
65
  console.log('Version sync complete!');