silgi 0.43.13 → 0.43.14

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.
@@ -57,10 +57,12 @@ const command = {
57
57
  });
58
58
  consola.info(`Starting command: nr ${startCommand}`);
59
59
  childProcess = execa("nr", [startCommand], {
60
- stdio: "inherit",
60
+ stdio: "pipe",
61
61
  shell: true,
62
62
  cwd: process.cwd()
63
63
  });
64
+ if (childProcess.stdout) childProcess.stdout.pipe(process.stdout);
65
+ if (childProcess.stderr) childProcess.stderr.pipe(process.stderr);
64
66
  childProcess.on("exit", (code) => {
65
67
  if (code !== 0) consola.error(`Process exited with code ${code}`);
66
68
  else consola.success("Process exited successfully.");
package/dist/package.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  //#region package.json
2
2
  var name = "silgi";
3
3
  var type = "module";
4
- var version = "0.43.13";
4
+ var version = "0.43.14";
5
5
  var private$1 = false;
6
6
  var packageManager = "pnpm@10.12.2";
7
7
  var sideEffects = false;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.43.13",
4
+ "version": "0.43.14",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {