Skip to content

Commit

Permalink
chore: properly stdout child process to shell when releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Dec 14, 2024
1 parent 967c9d8 commit d2f4355
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/child-process.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ export function spawnStreaming(
const options = {
...opts,
nodeOptions: {
stdio: ['ignore', 'pipe'],
}
stdio: ['pipe', 'inherit', 'inherit'],
},
};

if (cmdDryRun) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { copyFileSync, readFileSync, renameSync, writeFileSync } from 'node:fs';
import { dirname as pDirname, join as pJoin, resolve as pResolve } from 'node:path';
import readline from 'node:readline';
import { fileURLToPath } from 'node:url';
import readline from 'readline';
import { rimrafSync } from 'rimraf';
import semver from 'semver';
import c from 'tinyrainbow';
Expand Down

0 comments on commit d2f4355

Please sign in to comment.