Duarte Nunes

Results 44 comments of Duarte Nunes

Ah, yes, I certainly see how those `poll` functions are easier to work with! Thanks for the example, the approach makes a lot of sense to me 👍🏻

Hum.. I understand adding the `poll_collect_rw` function, but I still don't understand how hand-rolling `PollDmaReadAligned` is better, or why it's easier to store that instead of the future generated by...

Okay, I chatted with @HippoBaro and now I understand the issues. The goal is to make asynchronous functions more composable, either by providing `poll_` functions that can be called directly...

Deploying a stack with AWS CDK. This copy is made by the lib itself.

The copy is happening through a general mechanism and fixing this specific use-case would be a bit of a hack, but I guess doable. Note I'm running the resulting `js_library`...

How do I specify that I don't want any tsconfig to be loaded? I'm just giving esbuild JS sources, but because it loads a tsconfig, esbuild will use what's in...

It doesn't seem ideal to provide configuration through the file system. Explicitly setting `tsconfig` to `undefined` would be better. I think if a raw tsconfig could be provided to `build`...

I think this should be reopened. It's a regression to have something depend on `js_library` but not have access to the typings produced by `js_library` dependencies. Would it be possible...

Maybe the fix is simpler? If a `js_library` depends on a `ts_project` rule without the transpiler, then `tsc` has already ran and we don't need to optimize out the decl...

Well, it was more a question than a statement, but if what I wrote is correct (if `js_library` see a `DeclarationInfo`, a `tsc` execution has already taken place), then the...