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(blessed): use hex escapes for Node 24 strict-mode compatibility
Node 24 rejects octal escape sequences in strict mode, so the vendored blessed lib/tput.js ('\200', '\016', '\017') threw a SyntaxError on startup and the CLI could not run on Node 24. Extend the blessed patch to use the byte-equivalent hex escapes ('\x80', '\x0e', '\x0f').
0 commit comments