@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 +3 -2
- package/dist/cjs/package.json +1 -1
- package/dist/mjs/cli.mjs +3 -2
- package/dist/mjs/package.json +1 -1
- package/native-artifact.json +4 -4
- package/package.json +1 -1
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
|
|
127
|
-
|
|
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
|
});
|
package/dist/cjs/package.json
CHANGED
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
|
|
93
|
-
|
|
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
|
});
|
package/dist/mjs/package.json
CHANGED
package/native-artifact.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"packageVersion": "0.0.
|
|
4
|
-
"url": "https://downloads.r5d.dev/r5d-macos-vm/0.0.
|
|
5
|
-
"sha256": "
|
|
6
|
-
"byteLength":
|
|
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",
|