v0.267.3
Release Highlights
Fix: use child_process.spawn()
's 'close' event instead of 'exit'
Older versions of Node.js (around the v16.7.0 era) don't do a good job of emitting 'data' events before 'exit'. This behavior is clearly documented, so 'exit' has been swapped out for 'close' which should increase reliability.
Thank you to Chris Hickman for the tip!