mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
4a17c93088
This commit adds new "--inspect-wait" flag which works similarly to "--inspect-brk" in that it waits for inspector session to be established before running code. However it doesn't break on the first statement of user code, but instead runs it as soon as a session is established.
2 lines
80 B
JavaScript
2 lines
80 B
JavaScript
Deno.writeTextFileSync("./hello.txt", "hello world");
|
|
console.error("did run");
|