Conduitry

Results 524 comments of Conduitry

This has been released in 3.55.1.

What global variables? If you're bundling to ESM, you're expected to load it as ``, which means that top-level variables in the script won't define global variables. If you want...

I think I'm -1 on providing an API in the compiler for this. The compiler just returns an array of warnings - it's up to the consumer what it wants...

Something else I just thought of - if we want to use some CJS-ESM mechanism where we serialize the inputs and outputs of the Svelte compiler, we won't be able...

Please provide a complete, minimal reproduction - not just a single file from your project, and not something using Tailwind.

It looks like this only happens when the keyframes list is called `animation`, and the CSS scoper gets confused about what string to replace.

Ah, okay, yeah, if it's named anything that appears earlier in your `animation:` style rule before the keyframe list itself, this will break.

I can't find it right now, but this has come up before. I don't think we should have special behavior for `error` events where we simulate them if the image...

Unlike in #10069, this is for runtime code that we're shipping as part of the library. I do think that it would be nice to not use this API if...

I'm saying that transpilation (like that you can configure via Vite) won't help with API things like `Array.prototype.at`. If you need your app to work on browsers without that method...