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
fix(internal): Use Bun.stdin when using Bun to prevent process hanging (#760)
Bun's node:process stdin implementation has multiple issues related to
raw mode, resuming, and ending it too early.
To work around this, this adds a custom branch for the read function
when running under Bun. It uses Bun's own stdin implementation to read
one chunk and then dispose the reader.
Fixes#759
0 commit comments