bartlomieju
bartlomieju
DDeno
Created by Ayes on 11/29/2024 in #help
I can't seem to get the recursive flag to run
Could you please open a PR on GH? This feel like a bug in Deno. Thanks!
4 replies
DDeno
Created by BOLL on 11/24/2024 in #help
FileServer from tutorial, 2000+ ms to connect?
Are you on Windows? Try changing localhost to 127.0.0.1
6 replies
DDeno
Created by kek_ (Tobias) on 11/22/2024 in #help
Debugger crashes in Docker container
@snek could you take a look?
4 replies
DDeno
Created by mange on 11/22/2024 in #help
where does `deno compile` place the V8 code cache?
The things in ~/.cache/deno are regular Deno caches for things like module analysis, they are not required for deno compile binaries. Try compiling with deno compile --log-level debug - there will be some information if cache was used or rejected for some reason
5 replies
DDeno
Created by mange on 11/22/2024 in #help
where does `deno compile` place the V8 code cache?
It's in a temp directory, you might want to follow https://github.com/denoland/deno/issues/26980
5 replies
DDeno
Created by RogueMan on 11/12/2024 in #help
Dynamic import at compile time
20 replies
DDeno
Created by molsson on 11/20/2024 in #help
deno lint doesn't notice function call to unimported function
You need to enable no-undef rule manuallyb
2 replies
DDeno
Created by Andrew Valleteau on 11/20/2024 in #help
deno run fail to execute npm binary file in 2.0
Hey, i would actually appreciate an issue on GitHub
5 replies
DDeno
Created by wangyuze on 11/13/2024 in #help
How to resolve this issue: "Cannot find name 'Deno'.ts(2304)"?
If you have deno.enable true then the default TS server should have been disabled. CC @nayeemrmn
4 replies
DDeno
Created by w7a9q on 11/17/2024 in #help
Deno project source control
Yes
2 replies
DDeno
Created by vicary on 11/17/2024 in #help
How to specify/identify TypeScript version?
No, Deno ships with a fixed Typescript version
2 replies
DDeno
Created by Bhaumin on 11/16/2024 in #help
Understanding deno test Behavior with Interdependent Modules
But please include a better example because I'm still not sure if I understand the request
25 replies
DDeno
Created by Bhaumin on 11/16/2024 in #help
Understanding deno test Behavior with Interdependent Modules
Feel free to open an issue, there's none atm
25 replies
DDeno
Created by Bhaumin on 11/16/2024 in #help
Understanding deno test Behavior with Interdependent Modules
Then no, this is not supported
25 replies
DDeno
Created by Bhaumin on 11/16/2024 in #help
Understanding deno test Behavior with Interdependent Modules
Do you have a concrete example or a repo that you can share?
25 replies
DDeno
Created by Bhaumin on 11/16/2024 in #help
Understanding deno test Behavior with Interdependent Modules
I don't really understand what you mean here. If you have a_test.ts that pulls b_test.ts that pulls c_test.ts then Deno will discover all 3 files and run tests from it
25 replies
DDeno
Created by Bhaumin on 11/16/2024 in #help
Understanding deno test Behavior with Interdependent Modules
So it should just work right now
25 replies
DDeno
Created by Bhaumin on 11/16/2024 in #help
Understanding deno test Behavior with Interdependent Modules
deno test executes all tests in the files it discovers
25 replies
DDeno
Created by RogueMan on 11/12/2024 in #help
Dynamic import at compile time
Eg if you are in ./src/main.ts file you can import that included file as await import(import.meta.resolve("./modules/core/baseEvents.ts")
20 replies
DDeno
Created by RogueMan on 11/12/2024 in #help
Dynamic import at compile time
Yeah that's correct way to do it
20 replies