v0.3.1
Patch Changes
- a2679c6: Fix the
/exitcommand freezing the terminal in packaged builds. Process cleanup usedspawnSync(process.execPath, ["-e", ...])as a sleep, but in a compiled standalone binaryprocess.execPathis the CLI itself, so it relaunched the TUI and blocked forever. Replaced it with an in-process sleep and made exit terminate the process explicitly.