bare-runtime 1.23.3 → 1.23.5
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/lib/spawn.js +11 -2
- package/package.json +14 -14
package/lib/spawn.js
CHANGED
|
@@ -33,10 +33,19 @@ module.exports = function spawn(referrer, opts) {
|
|
|
33
33
|
const job = childProcess.spawn(bin, args, opts)
|
|
34
34
|
|
|
35
35
|
if (suppressSignals) {
|
|
36
|
-
|
|
36
|
+
const signals = [
|
|
37
|
+
'SIGUSR1',
|
|
38
|
+
'SIGUSR2',
|
|
39
|
+
'SIGTERM',
|
|
40
|
+
'SIGINT',
|
|
41
|
+
'SIGPIPE',
|
|
42
|
+
'SIGHUP'
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
for (const signal of signals) process.on(signal, onsignal)
|
|
37
46
|
|
|
38
47
|
job.once('exit', () => {
|
|
39
|
-
|
|
48
|
+
for (const signal of signals) process.off(signal, onsignal)
|
|
40
49
|
})
|
|
41
50
|
}
|
|
42
51
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bare-runtime",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.5",
|
|
4
4
|
"description": "Prebuilt Bare binaries for macOS, iOS, Linux, Android, and Windows",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./index.js",
|
|
@@ -62,19 +62,19 @@
|
|
|
62
62
|
"bare-subprocess": "^5.0.0"
|
|
63
63
|
},
|
|
64
64
|
"optionalDependencies": {
|
|
65
|
-
"bare-runtime-android-arm": "1.23.
|
|
66
|
-
"bare-runtime-android-arm64": "1.23.
|
|
67
|
-
"bare-runtime-android-ia32": "1.23.
|
|
68
|
-
"bare-runtime-android-x64": "1.23.
|
|
69
|
-
"bare-runtime-darwin-arm64": "1.23.
|
|
70
|
-
"bare-runtime-darwin-x64": "1.23.
|
|
71
|
-
"bare-runtime-ios-arm64": "1.23.
|
|
72
|
-
"bare-runtime-ios-arm64-simulator": "1.23.
|
|
73
|
-
"bare-runtime-ios-x64-simulator": "1.23.
|
|
74
|
-
"bare-runtime-linux-arm64": "1.23.
|
|
75
|
-
"bare-runtime-linux-x64": "1.23.
|
|
76
|
-
"bare-runtime-win32-arm64": "1.23.
|
|
77
|
-
"bare-runtime-win32-x64": "1.23.
|
|
65
|
+
"bare-runtime-android-arm": "1.23.5",
|
|
66
|
+
"bare-runtime-android-arm64": "1.23.5",
|
|
67
|
+
"bare-runtime-android-ia32": "1.23.5",
|
|
68
|
+
"bare-runtime-android-x64": "1.23.5",
|
|
69
|
+
"bare-runtime-darwin-arm64": "1.23.5",
|
|
70
|
+
"bare-runtime-darwin-x64": "1.23.5",
|
|
71
|
+
"bare-runtime-ios-arm64": "1.23.5",
|
|
72
|
+
"bare-runtime-ios-arm64-simulator": "1.23.5",
|
|
73
|
+
"bare-runtime-ios-x64-simulator": "1.23.5",
|
|
74
|
+
"bare-runtime-linux-arm64": "1.23.5",
|
|
75
|
+
"bare-runtime-linux-x64": "1.23.5",
|
|
76
|
+
"bare-runtime-win32-arm64": "1.23.5",
|
|
77
|
+
"bare-runtime-win32-x64": "1.23.5"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"prettier": "^3.3.3",
|