Naman Goel

Results 403 comments of Naman Goel

> One potential issue I see is poorly defined ranges (e.g. min-width: 768px and max-width: 1024px with a second min-width: 1024px and max-width: 1368px range). Yes, this is bad CSS,...

Try this: ```tsx const colors = stylex.defineVars({ background: "0 0 0%" as `${number} ${number} ${number}%` }) ``` It won't *validate* correct usage, but should help catch the mistake early. ---...

@aspizu No because the variables are defined in one file but used in another. The Babel plugin or the ESLint plugin can't know what was stored within the variable.

Happy to accept contributions for this. It might be possible to use `unplugin` to do this.

We will work on this. In the meantime, can you verify that you see the same issues with a different package manager? Also, would you be willing to share an...

We do want to support an official Vite plugin, but we want it to support "complex use cases like SSR" as well. This is important to us as many Vite...

I worked with a team member from Qwik.js and have a Vite plugin working with it. The code is a bit messy, but it all works. Probably worth trying to...