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
`
and compiled main.exe works OK.
I can click on it or run it from console.
While
` deno compile -A --unstable --no-terminal main.ts"
`
compiles to main.exe, which works when I run it from console (I can close console, and program runs anyway), while clicking on main.exe
doesn't run it (no error is reported/thrown)
The text was updated successfully, but these errors were encountered:
Currently most deno compile flag are using for cli running so that clicking the app outside will not working. And also there is no '--no-terminal' flag in the deno documentation too, where are you getting them from ??
I use in my win10 project task:
`
deno compile -A --unstable main.ts"
`
and compiled main.exe works OK.
I can click on it or run it from console.
While
`
deno compile -A --unstable --no-terminal main.ts"
`
compiles to main.exe, which works when I run it from console (I can close console, and program runs anyway), while clicking on main.exe
doesn't run it (no error is reported/thrown)
The text was updated successfully, but these errors were encountered: