Naman Goel

Results 403 comments of Naman Goel

That seems likely. I haven't used firebase, so I can't say for sure.

I don't know what Firebase is doing to build the app. It is possible that they're sidestepping the custom configuration and using the default build config for NextJS instead. In...

A bigger improvement to the ESLint rule is planned. The plan is to use a CSS value parser to validate all CSS properties according to the specification and remove the...

@yousoumar Please wait for the parser to start working on this. There is a bigger refactor needed for the ESLint plugin to consistent parse complex values that are currently parsed...

We won't be doing this, but a feature to automatically detect and resolve conflicts between media queries is planned. It should result in the same experience in practice.

@SukkaW Our internal codemods are based on Flow which is not really used outside of Meta and would likely not be useful. Also this particular transition happened a long time...

@rjsdnql123 > As far as I understand, `stylex.defineVars` in stylexjs is used to set and retrieve preset values. As the name suggests, `defineVars` is used to defining CSS variables and...

@rjsdnql123 Start with the theming section on the website. Then see the Card component in the NextJS example in the repo. Usually, variables should not be used as keys. It's...

@arthurur We recommend using separate constants since objects are mutable in JS, however, the pattern you're describing should work. Was `media` declared as a top-level const in the same file?...