Maël Nison

Results 627 comments of Maël Nison

> The `index-sha512.mjs` example in the PR feels like something that should be achievable with the current hooks. `resolve` could find the `sha512` suffix, and `load` could generate custom source...

@aduh95 as far as I can tell this loader isn't sufficient; since the result is a data-url, Node won't treat it the same as regular files. For instance, if you...

> it's still a module with a default export that contains the information you seek (Node.js should treat data-url modules same as regular files imo). But it's not: turning a...

Have one of each other weapons ? It would make sense, since Gilgamesh is the ultimate weapon collector.

Indeed; we could avoid that by making `Option.String` & friends return a Proxy that would "buffer" all manipulations, but it'd be quite overkill imo. I'm not sure what else we...

Will variadic imports be eager or lazy? It'd be quite nice if we could configure that on a case-by-case basis. Webpack does this via [comment annotations](https://webpack.js.org/api/module-methods/#magic-comments): ```ts await import(/* webpackMode:...

I tried to use this branch on our codebase, but it crashes with "The service was stopped" after running for some time (huge amount of logs are generated, no error,...

I found a reproduction! It seems to be an interaction with the zip reader, when a dynamic import is found within a dependency. In my case a minimal repro is:...

> I guess conversely we also need to figure out if --require should apply to the loader worker with this separation as well. Some related discussion (from August) in the...

I've investigated, but the issue is a little complicated for me, as I don't know very well the v8 C++ API. It turns out the real cause for the problem...