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
import { Application } from "jsr:@oak/[email protected]";
console.log(Application);
run deno compile deps.ts
run ./deps
The binary will hang forever and not reach the console log.
This was tested on Ubuntu 22.04 and Windows 10, Deno 1.41.3 and 1.42.0.
The affected Oak versions are: I guess every one on JSR but only 14.2.0 on deno.land/x
Edit:
The same happens when I do for example import { walk } from "@std/fs/walk" instead of just import { walk } from "@std/fs" - works with deno run but not when compiled, so probably a deno compile issue.
The text was updated successfully, but these errors were encountered:
Easiest way to reproduce:
Create
deps.ts
with:run
deno compile deps.ts
run
./deps
The binary will hang forever and not reach the console log.
This was tested on Ubuntu 22.04 and Windows 10, Deno 1.41.3 and 1.42.0.
The affected Oak versions are: I guess every one on JSR but only 14.2.0 on deno.land/x
Edit:
The same happens when I do for example
import { walk } from "@std/fs/walk"
instead of justimport { walk } from "@std/fs"
- works withdeno run
but not when compiled, so probably adeno compile
issue.The text was updated successfully, but these errors were encountered: