amalgm 0.1.60 → 0.1.61

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.
@@ -133,7 +133,8 @@ function listPsProcesses() {
133
133
  }
134
134
 
135
135
  function listProcesses() {
136
- const processes = listProcProcesses() || listPsProcesses();
136
+ const psProcesses = listPsProcesses();
137
+ const processes = psProcesses.length > 0 ? psProcesses : (listProcProcesses() || []);
137
138
  const commandByPid = new Map(processes.map((item) => [item.pid, item.command]));
138
139
  return processes.map((item) => ({
139
140
  ...item,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amalgm",
3
- "version": "0.1.60",
3
+ "version": "0.1.61",
4
4
  "description": "Amalgm local computer runtime: login, MCP, chat, events, previews, and tunnels.",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,