@cluesmith/codev 2.0.0-rc.49 → 2.0.0-rc.50

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.
@@ -212,7 +212,7 @@ function ensureGlobalDatabase() {
212
212
  // Column already exists
213
213
  }
214
214
  try {
215
- db.exec('ALTER TABLE port_allocations ADD COLUMN created_at TEXT NOT NULL DEFAULT (datetime("now"))');
215
+ db.exec("ALTER TABLE port_allocations ADD COLUMN created_at TEXT NOT NULL DEFAULT (datetime('now'))");
216
216
  }
217
217
  catch {
218
218
  // Column already exists
@@ -673,7 +673,7 @@ async function launchInstance(projectPath) {
673
673
  nextPort = base_port + 100;
674
674
  }
675
675
  }
676
- db.prepare('INSERT INTO port_allocations (project_path, project_name, base_port, created_at) VALUES (?, ?, ?, datetime("now"))').run(resolvedPath, path.basename(projectPath), nextPort);
676
+ db.prepare("INSERT INTO port_allocations (project_path, project_name, base_port, created_at) VALUES (?, ?, ?, datetime('now'))").run(resolvedPath, path.basename(projectPath), nextPort);
677
677
  allocation = { base_port: nextPort };
678
678
  log('INFO', `Allocated port ${nextPort} for project: ${projectPath}`);
679
679
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cluesmith/codev",
3
- "version": "2.0.0-rc.49",
3
+ "version": "2.0.0-rc.50",
4
4
  "description": "Codev CLI - AI-assisted software development framework",
5
5
  "type": "module",
6
6
  "bin": {