Skip to content

Commit

Permalink
Merge branch 'v2' into fix-flow-require-resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
imbrian authored Jul 28, 2023
2 parents 497662f + 09103f5 commit bfd8304
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/parcel/src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@ async function run(

// In non-tty cases, respond to SIGINT by cleaning up. Since we're watching,
// a 0 success code is acceptable.
process.on('SIGINT', exit);
process.on('SIGTERM', exit);
process.on('SIGINT', () => exit());
process.on('SIGTERM', () => exit());
} else {
try {
await parcel.run();
Expand Down

0 comments on commit bfd8304

Please sign in to comment.