No-terminal Seems to Not Work
Using --no-terminal seems to not work as the program will appear to not run at all, even if it is supposed to attempt to write to a file. Nothing will happen, files won't be written to, cant find anything on it.
5 Replies
What cli command are you trying to use?
deno run
doesn't have a --no-terminal flag. You can probably find the correct flag in the deno cli docs: https://docs.deno.com/runtime/reference/cli/Deno
Deno CLI Subcommands
In-depth documentation, guides, and reference materials for building secure, high-performance JavaScript and TypeScript applications with Deno
On compilation the flag exists
Whats your OS?
If you compile without
--no-terminal
, does your app work?Windows, and yes
without no terminal it successfully opens another window which is the main focus of the app
@Glorwyn Yes, it is a bug. See https://github.com/denoland/deno/issues/21091
GitHub
Application does not show up with
deno compile --no-terminal
on W...Thank you for the wonderful option called --no-terminal. However, in my environment, the application did not show up after compile. I think this is the cause of this part, because it does not work ...