EECOLOR
EECOLOR
@evanw Thanks! As soon as I have time I will verify it. https://github.com/evanw/esbuild/issues/4164 has a more complete test case, so if it indeed fixes that problem I will close that...
At NPM we can read the following: > ⚠️ THIS PACKAGE IS DEPRECATED > This package is part of Sanity Studio v2, which has been superseded by Sanity Studio v3,...
Initially it seems that disabling the transformation (by using the versions listed here: https://developer.mozilla.org/en-US/docs/Web/CSS/Nesting_selector#browser_compatibility) would work for us. We however found out that these numbers are incorrect (at least for...
@evanw Would you accept a pull request for this? If so, if you have any pointers on where to start, that would greatly help :-D
Removing the `if`-statement in `css_nesting.go` solves this error, but introduces others: ```js // if !sel.UsesPseudoElement() { parentSelectors = append(parentSelectors, css_ast.ComplexSelector{Selectors: substituted}) // } ``` It's great to see this is...
This issue has been resolved, for details see https://github.com/evanw/esbuild/pull/4177
@Nefcanto Couldn't you use a custom `jsx` function? https://esbuild.github.io/content-types/#using-jsx-without-react In this function you could detect the first argument, if it is not a `string` or `function` you can wrap it...
@Nefcanto I don't see how there are problems replacing those functions with wrappers. Unless you implement them wrong, but you can create tests if you want to be more confident....
I might be missing something. From my perspective reflection in programming language is mostly there because the programmer "lost" some information. Sometimes this is by accident, in other cases this...