Download Latest Version v7.24.2 source code.tar.gz (596.7 kB)
Email in envelope

Get an email when there's a new version of Nylo Support

Home / v7.24.2
Name Modified Size InfoDownloads / 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.runProcess no longer breaks the parent CLI's stdin - the helper used to wire stdin.pipe(process.stdin) to the child, which left the parent's stdin in a consumed state once the child exited. Subsequent readLineSync-based prompts (e.g. in scaffold-ui's auth/iap dialogs) returned null and the unhandled !-on-null tore down the program. The child now inherits the parent's file descriptors directly via ProcessStartMode.inheritStdio, leaving the parent's stdin untouched
  • dart_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 to 0 and SetConsoleMode(handle, 0) killed line input, echo, and processed input. As a result, stdin.readLineSync on Windows could not detect Enter after a Console.readKey call. The mask is now correctly OR-combined
Source: README.md, updated 2026-05-10