You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using tmp in Yarn, but it causes problems where other SIGINT handlers aren't registered due to tmp overriding them with its own (I'm not entirely sure about the order of execution to be honest, but it's clear tmp has a role into this).
Why is node-tmp catching SIGINT in the first place rather than using the beforeExit handler?
The text was updated successfully, but these errors were encountered:
Yeah, this issue caused a massive headache for me too. Our production web app relies on a SIGINT handler to shut down (or reload) gracefully, which it started to not do after we've included this package.
I'm using
tmp
in Yarn, but it causes problems where other SIGINT handlers aren't registered due totmp
overriding them with its own (I'm not entirely sure about the order of execution to be honest, but it's cleartmp
has a role into this).Why is
node-tmp
catching SIGINT in the first place rather than using thebeforeExit
handler?The text was updated successfully, but these errors were encountered: