@reboot-dev/reboot 0.38.3 → 0.38.4

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "@bufbuild/protobuf": "1.3.2",
4
4
  "@bufbuild/protoplugin": "1.3.2",
5
5
  "@bufbuild/protoc-gen-es": "1.3.2",
6
- "@reboot-dev/reboot-api": "0.38.3",
6
+ "@reboot-dev/reboot-api": "0.38.4",
7
7
  "chalk": "^4.1.2",
8
8
  "node-addon-api": "^7.0.0",
9
9
  "node-gyp": ">=10.2.0",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "type": "module",
22
22
  "name": "@reboot-dev/reboot",
23
- "version": "0.38.3",
23
+ "version": "0.38.4",
24
24
  "description": "npm package for Reboot",
25
25
  "scripts": {
26
26
  "preinstall": "node preinstall.cjs",
package/rbt.js CHANGED
@@ -52,9 +52,8 @@ async function main() {
52
52
  addExtensionlessToNodeOptions();
53
53
  // Using 'spawn' instead of 'spawnSync' to avoid blocking the event loop for
54
54
  // signal handling.
55
- const rbt = spawn(`${path.join(VENV_EXEC_PATH, "rbt")} ${process.argv.slice(2).join(" ")}`, {
56
- stdio: [process.stdin, process.stdout, process.stderr],
57
- shell: true,
55
+ const rbt = spawn(`${path.join(VENV_EXEC_PATH, "rbt")}`, process.argv.slice(2), {
56
+ stdio: "inherit",
58
57
  });
59
58
  process.on("SIGINT", () => {
60
59
  // Make sure to kill the child process before exiting.
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const REBOOT_VERSION = "0.38.3";
1
+ export declare const REBOOT_VERSION = "0.38.4";
package/version.js CHANGED
@@ -1 +1 @@
1
- export const REBOOT_VERSION = "0.38.3";
1
+ export const REBOOT_VERSION = "0.38.4";