cicy-code 0.2.7 → 0.2.9

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.
Files changed (2) hide show
  1. package/bin/cicy-code.js +0 -1
  2. package/package.json +1 -1
package/bin/cicy-code.js CHANGED
@@ -130,7 +130,6 @@ async function launchDesktop() {
130
130
 
131
131
  // 0. Kill existing electron/cicy-code and free ports
132
132
  try { execSync(`pkill -f 'electron' 2>/dev/null || true`, { shell: true }); } catch {}
133
- try { execSync(`pkill -f 'cicy-code' 2>/dev/null || true`, { shell: true }); } catch {}
134
133
  try { execSync(`lsof -ti:${desktopPort} | xargs kill -9 2>/dev/null || true`, { shell: true }); } catch {}
135
134
  try { execSync(`lsof -ti:${port} | xargs kill -9 2>/dev/null || true`, { shell: true }); } catch {}
136
135
  await new Promise(resolve => setTimeout(resolve, 500));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cicy-code",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "description": "CiCy Code - AI-powered development environment",
5
5
  "bin": {
6
6
  "cicy-code": "bin/cicy-code.js"