Skip to content

Commit

Permalink
Merge branch 'main' into feature/improve-shuffle-documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MarlonPassos-git authored Nov 23, 2024
2 parents edceb37 + 2d243b3 commit 7e32f16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function main([command, ...argv]) {

const installer = spawn('pnpm', ['install', '--lockfile-dir', __dirname], {
cwd: pkgDir,
stdio: 'inherit',
stdio: ['ignore', process.stderr, 'inherit'],
env: strictEnv,
})

Expand Down Expand Up @@ -89,7 +89,7 @@ async function main([command, ...argv]) {
console.warn(`> pnpm add -g ${tsxSpecifier}`)
await new Promise((resolve, reject) => {
const installer = spawn('pnpm', ['install', '-g', tsxSpecifier], {
stdio: 'inherit',
stdio: ['ignore', process.stderr, 'inherit'],
env: strictEnv,
})
installer.on('close', resolve)
Expand Down

0 comments on commit 7e32f16

Please sign in to comment.