Fy
Fy
Any idea on why `require.resolve` is not cached 🤔
Also, if I deleted index.d.ts, if I just run napi build, no index.d.ts will be generated because no rust compilation happens
We can get crate and ts type_def in that crate, and use that to cache some type_def information. If we rebuild without actual compiling we can get ts type from...
It's a hack though, but is important to some scenario. Assuming I want develop a pluggable system, I certainly want to use cargo workspace, and napi-rs is very convenient, I...
There is a replacement of compilation.chunkGraph in compilation.executeModule, [code is here](https://github.com/webpack/webpack/blob/87660921808566ef3b8796f8df61bd79fc026108/lib/Compilation.js#L4906-L4915), I assume it's because plugins might use the chunkGraph from compilation, causing some logic can't be applied to the...
Can we store the css modules name mapping at JS chunk instead of css chunk, the downside is that it will increase the size of the JS chunk, use runtime...
> it will increase the size of the JS chunk I think this is okay because the total size should be the same. Current strategy, when loading a chunk, total...
> please fix conflict Done
This is caused by SWC, when parsing CSS with invalid apostrophes, it probably went into a infinite loop so we can't get the error result of it
!eco-ci