Andrey Tsarev

Results 24 comments of Andrey Tsarev

I've ported it to ESM and created an npm library to test with: https://www.npmjs.com/package/negotiator-es Also tried to replace the usages in tinyhttp with the ESM version (^0.1.6) and all tests...

After hours of debugging - I found the issue was a the icon package I was using - `@tabler/icons@^1.119.0`. I upgraded to the newest version `^3` and it is super...

Here is a minimal reproduction example: https://github.com/colorninja/rsbuild-slow-compile-bug Obviously there is some incapability with this package because it works great with everything else. I think the main pain point here is...

I manager to solve this by adding the following to my AppServiceProvider: ```php $this->app->singleton(DoctrinePresenceVerifier::class); $this->app->extend('validation.presence', fn () => app()->get(DoctrinePresenceVerifier::class)); ``` A bit hacky but a step in the right direction....

Also added another SCSS file in the reproduction repo to test. The other file is properly shown in source maps so this only affects `@import`. Imports from JS are correctly...

I've had sourcemaps working before on `@import` syntax. I will try with another tool and report here

I managed to get sourcemaps working with webpack quite easily - see: https://github.com/dretsa/rsbuild-webpack-scss-sourcemaps 1. Pull repo 2. Run `npm ci` 3. Run `npm run build` 4. Open `dist/index.html`

Thank you for checking! I am not suggesting removing them at all. I had a quick look if LightningCSS supports sourcemaps and they have an option to pass in sass...

Considering the main features of SASS are now supported with plain CSS I'm not sure how worth it is implementing this. If it's possible to fix the performance regressions with...