termeet 0.1.8 → 0.1.10
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/bin/termeet.js +9 -1
- package/package.json +7 -7
package/bin/termeet.js
CHANGED
|
@@ -57,4 +57,12 @@ if (!bin) {
|
|
|
57
57
|
process.exit(1)
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
try {
|
|
61
|
+
execFileSync(bin, process.argv.slice(2), { stdio: "inherit" })
|
|
62
|
+
} catch (err) {
|
|
63
|
+
if (err.signal) {
|
|
64
|
+
// Re-raise the same signal so the parent sees the correct exit reason
|
|
65
|
+
process.kill(process.pid, err.signal)
|
|
66
|
+
}
|
|
67
|
+
process.exit(err.status ?? 1)
|
|
68
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "termeet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Termeet - Video conferencing with ASCII art",
|
|
5
5
|
"module": "src/index.tsx",
|
|
6
6
|
"type": "module",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"bin"
|
|
22
22
|
],
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"termeet-cli-darwin-arm64": "0.1.
|
|
25
|
-
"termeet-cli-darwin-x64": "0.1.
|
|
26
|
-
"termeet-cli-linux-arm64": "0.1.
|
|
27
|
-
"termeet-cli-linux-x64": "0.1.
|
|
28
|
-
"termeet-cli-windows-arm64": "0.1.
|
|
29
|
-
"termeet-cli-windows-x64": "0.1.
|
|
24
|
+
"termeet-cli-darwin-arm64": "0.1.10",
|
|
25
|
+
"termeet-cli-darwin-x64": "0.1.10",
|
|
26
|
+
"termeet-cli-linux-arm64": "0.1.10",
|
|
27
|
+
"termeet-cli-linux-x64": "0.1.10",
|
|
28
|
+
"termeet-cli-windows-arm64": "0.1.10",
|
|
29
|
+
"termeet-cli-windows-x64": "0.1.10"
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|