Kaffi Yang
Kaffi Yang
webpack's implementation: ```js // https://npmjs.com/glob-to-regexp const glob2regexp = require('glob-to-regexp'); const globToRegexp = (glob) => { if (!glob.includes("/")) { glob = `**/${glob}`; } const baseRegexp = glob2regexp(glob, { globstar: true, extended:...
please considers removing `less.rootpath` or duplicating alias configs with rootpath prefixed like `"ui/mixins/@alias": "@alias"`
> please considers removing `less.rootpath` or duplicating alias configs with rootpath prefixed like `"ui/mixins/@alias": "@alias"` @konrad-marzec could you please share more feedback on if it works?
It should have gone after #2529. please check again with latest revision.
An example to patch it with pnpm: https://github.com/xc2/follow-it-later/pull/22
How about just applying aliases only when there's no `"exports"` field. In Node.js, `"exports"` field is [mandatory](https://nodejs.org/api/packages.html#self-referencing-a-package-using-its-name) to do self-referencing with the ES Modules system. If one is doing self-referencing...
If your environment has node.js installed, `bun run build` will run rsbuild with node.js instead of bun itself as there's a shebang refer to node in rsbuild's cli. that's why...
> @xc2 seems bun's compatible issue? @hardfist yes, seems like bun's napi implementation problem. still not find out the rspack code that causes bun hanging
Also tracked in https://github.com/module-federation/core/issues/2675
Stroke `shift-T` on workflow log page, github will display the timestamps for you. btw, please refer to https://github.com/jlumbroso/free-disk-space/pull/26 for better perf. To try out atm, change `uses: jlumbroso/free-disk-space@main` to `uses:...