Description
Version: Deno 2.0.4
macOS: 14.2.1
Repro steps
-
deno
in Alacritty -
process.stdout.on('resize', () => { console.log(
${process.stdout.columns}x${process.stdout.rows}) })
- Resize Alacritty window
Expected
Printed console output with the process columns and rows.
Actual
Nothing happens.
Additionally
If you run the same process.stdout.on('resize', () => { console.log(
${process.stdout.columns}x${process.stdout.rows}) })
in node
(I'm using v20), then you'll see the expected results.
Also, I've tested in Warp and Terminal TTY apps as well and got the same bug.