@ricsam/r5d-macos-vm 0.0.87 → 0.0.89

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/dist/cjs/cli.cjs CHANGED
@@ -123,8 +123,9 @@ const invokeNativeProcess = (executable, args) => new Promise((resolve, reject)
123
123
  process.once("SIGTERM", onSigterm);
124
124
  child.once("error", reject);
125
125
  child.once("close", (code, signal) => {
126
- process.off("SIGINT", onSigint);
127
- process.off("SIGTERM", onSigterm);
126
+ const processEvents = process;
127
+ processEvents.removeListener("SIGINT", onSigint);
128
+ processEvents.removeListener("SIGTERM", onSigterm);
128
129
  if (signal) resolve(128 + (signal === "SIGINT" ? 2 : 15));
129
130
  else resolve(code ?? 1);
130
131
  });
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-macos-vm",
3
- "version": "0.0.87",
3
+ "version": "0.0.89",
4
4
  "type": "commonjs"
5
5
  }
package/dist/mjs/cli.mjs CHANGED
@@ -89,8 +89,9 @@ const invokeNativeProcess = (executable, args) => new Promise((resolve, reject)
89
89
  process.once("SIGTERM", onSigterm);
90
90
  child.once("error", reject);
91
91
  child.once("close", (code, signal) => {
92
- process.off("SIGINT", onSigint);
93
- process.off("SIGTERM", onSigterm);
92
+ const processEvents = process;
93
+ processEvents.removeListener("SIGINT", onSigint);
94
+ processEvents.removeListener("SIGTERM", onSigterm);
94
95
  if (signal) resolve(128 + (signal === "SIGINT" ? 2 : 15));
95
96
  else resolve(code ?? 1);
96
97
  });
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-macos-vm",
3
- "version": "0.0.87",
3
+ "version": "0.0.89",
4
4
  "type": "module"
5
5
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "packageVersion": "0.0.87",
4
- "url": "https://downloads.r5d.dev/r5d-macos-vm/0.0.87/R5DMacOSVM.app.zip",
5
- "sha256": "314c2d3adb5474848b6881f07f6c546b33c08d66917269cc302caf681f057fd1",
6
- "byteLength": 191302,
3
+ "packageVersion": "0.0.89",
4
+ "url": "https://downloads.r5d.dev/r5d-macos-vm/0.0.89/R5DMacOSVM.app.zip",
5
+ "sha256": "22dedb422d179415ff17c6801ab95519180a995a9b5785bf6c80f3389f4d589c",
6
+ "byteLength": 191295,
7
7
  "archiveName": "R5DMacOSVM.app.zip",
8
8
  "appName": "R5DMacOSVM.app",
9
9
  "executableName": "R5DMacOSVM",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-macos-vm",
3
- "version": "0.0.87",
3
+ "version": "0.0.89",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/cli.cjs",
6
6
  "module": "./dist/mjs/cli.mjs",