Mokshit Jain

Results 28 comments of Mokshit Jain

The `map` was the JSON string returned by swc when `sourceMaps` was set to `true`. The issue was with the data uri that swc created. Also, after trying this with...

I think there are many things that are causing this issue. I was able to fix the above sample ```js const foo = () => ``` by removing the `\n`...

@mattcompiles I was working on a css-in-ts library which provides a styled api wrapper over recipes API and allows to declare vanilla-extract styles in same file. In the styled API...

The abstraction already works without needing a fork, the thing that I want to add is: ```js const styled = (Component, runtimeFn) => { return function StyledComponent(props) { const [variants,...

Container queries plugin isn't working right now because typewind doesn't have a syntax for classes that start with \@. Once I've decided on a syntax for that, it will work....

This has been fixed in v0.0.7 https://github.com/Mokshit06/typewind/commit/3d1472f4acc8b563f60e2c1b4c79679b17503bbb. The syntax is: ```jsx ``` Just replaces `@` with `$`

I think the main thing blocking sveltekit and solid-start is ESM support. Typewind currently only ships commonjs bundles, but both of these frameworks require the libraries to support esm

Thanks @KevinVandy for the ping. @dummdidumm The idea to keep inline wrapper component logic was for mainly 2 reasons: - In most cases the the cell to be rendered is...

> Any idea why the type annotation didn't get removed there? Did you enable `dts` in `civetPlugin`? Vite & rollup plugins currently don't support dts generation, but I've got it...

It actually looks like this change makes so that the edges & vertices on a face behind the current one are not "covered"/dimmed by the face above it. Current behaviour:...