@base44-preview/cli 0.0.55-pr.545.5699f86 → 0.0.55-pr.545.58808d6
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/cli/index.js +3 -2
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -255501,12 +255501,13 @@ class ServeRunner {
|
|
|
255501
255501
|
if (this.child) {
|
|
255502
255502
|
return;
|
|
255503
255503
|
}
|
|
255504
|
+
const stdin2 = process21.platform === "win32" ? "ignore" : "inherit";
|
|
255504
255505
|
const child = spawn3(this.command, {
|
|
255505
255506
|
cwd: this.cwd,
|
|
255506
255507
|
shell: true,
|
|
255507
255508
|
detached: process21.platform !== "win32",
|
|
255508
255509
|
env: { ...process21.env, ...this.env },
|
|
255509
|
-
stdio: [
|
|
255510
|
+
stdio: [stdin2, "pipe", "pipe"]
|
|
255510
255511
|
});
|
|
255511
255512
|
this.child = child;
|
|
255512
255513
|
this.setupHandlers(child);
|
|
@@ -261928,4 +261929,4 @@ export {
|
|
|
261928
261929
|
CLIExitError
|
|
261929
261930
|
};
|
|
261930
261931
|
|
|
261931
|
-
//# debugId=
|
|
261932
|
+
//# debugId=FB17A69F9601DE6464756E2164756E21
|