| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-05-10 | 917 Bytes | |
| v7.24.2 source code.tar.gz | 2026-05-10 | 596.7 kB | |
| v7.24.2 source code.zip | 2026-05-10 | 754.4 kB | |
| Totals: 3 Items | 1.4 MB | 0 | |
Fixed
MetroService.runProcessno longer breaks the parent CLI's stdin - the helper used to wirestdin.pipe(process.stdin)to the child, which left the parent's stdin in a consumed state once the child exited. SubsequentreadLineSync-based prompts (e.g. in scaffold-ui's auth/iap dialogs) returnednulland the unhandled!-on-null tore down the program. The child now inherits the parent's file descriptors directly viaProcessStartMode.inheritStdio, leaving the parent's stdin untoucheddart_console.disableRawMode()no longer zeroes the Windows console mode - the disabled-mode bitmask was built with&instead of|, so the OR-only-makes-sense flags resolved to0andSetConsoleMode(handle, 0)killed line input, echo, and processed input. As a result,stdin.readLineSyncon Windows could not detect Enter after aConsole.readKeycall. The mask is now correctly OR-combined