Devon Govett

Results 894 comments of Devon Govett

Wait, why are you running esbuild over the lightningcss code in node_modules?

lightningcss is a dev dependency, so it should be loaded directly by node, not bundled. We can't move to `import()` because that would make this an async module, which would...

Can you use CSS variables for this?

I am not seeing that behavior in [the playground](https://lightningcss.dev/playground/index.html#%7B%22minify%22%3Atrue%2C%22customMedia%22%3Atrue%2C%22cssModules%22%3Afalse%2C%22analyzeDependencies%22%3Afalse%2C%22targets%22%3A%7B%22chrome%22%3A7929856%2C%22edge%22%3A7929856%2C%22ios_saf%22%3A1114112%7D%2C%22include%22%3A0%2C%22exclude%22%3A0%2C%22source%22%3A%22.foo%20%7B%5Cn%20%20backdrop-filter%3A%20brightness(60%25)%3B%5Cn%7D%5Cn%22%2C%22visitorEnabled%22%3Afalse%2C%22visitor%22%3A%22%7B%5Cn%20%20Color(color)%20%7B%5Cn%20%20%20%20if%20(color.type%20%3D%3D%3D%20'rgb')%20%7B%5Cn%20%20%20%20%20%20color.g%20%3D%200%3B%5Cn%20%20%20%20%20%20return%20color%3B%5Cn%20%20%20%20%7D%5Cn%20%20%7D%5Cn%7D%22%2C%22unusedSymbols%22%3A%5B%5D%2C%22version%22%3A%22local%22%7D). I used the [browserslist website](https://browsersl.ist/#q=last+10+versions%2C+not+dead%2C+not+%3C+2%25) to convert your browserslist to versions. Maybe it's something in panda?

I'd love to do that. The reasons for the fork were: 1. selectors was using an out of date version of cssparser. I think that's been updated now, but differing...

FWIW, this could be made easier to do, but it is possible to implement today using the offset and crossOffset props props on Popover. Basically force the placement to always...

Hmm this error uses the browser's language rather than the one set by the provider and included by the server. Maybe these are different?

Looks like the docs would need to be updated. This used to work but there have been some updates to TanStack Router's types that broke it. This should work instead:...

I think this is fixed by https://github.com/parcel-bundler/parcel/pull/9901