Skip to content

Commit

Permalink
fix: prevent pnpm from asking questions when install command is run
Browse files Browse the repository at this point in the history
  • Loading branch information
zaripych committed Jan 4, 2024
1 parent 997a61c commit 9d3a38e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/angry-gorillas-serve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'refactor-bot': patch
---

fix: prevent pnpm from asking questions when install command is run
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ export async function installDependencies(opts: {
cwd: opts.directory,
logOnError: 'combined',
exitCodes: [0],
env: {
...process.env,
CI: 'true',
},
});
break;
case 'npm':
Expand Down

0 comments on commit 9d3a38e

Please sign in to comment.