@aabadin/project-memory-context 0.2.14 → 0.2.15

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.
@@ -33,7 +33,7 @@ function killPortProcess(port) {
33
33
  const pids = new Set();
34
34
  for (const line of output.trim().split('\n')) {
35
35
  const match = line.trim().match(/\s+(\d+)$/);
36
- if (match) pids.add(match[1]);
36
+ if (match && match[1] !== '0') pids.add(match[1]);
37
37
  }
38
38
  for (const pid of pids) {
39
39
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aabadin/project-memory-context",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "Portable project memory context CLI — bootstraps semantic enrichment workflows for any AI coding agent.",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "type": "module",