Cédric Eberhardt

Results 39 comments of Cédric Eberhardt

There is definitely a regression somewhere. Using `import.meta.url` results in importing my `.ts` files as `video/m2ts` instead of TypeScript.

I don't think we need something very complex here. We just have to consider each component as a new Svelte app. I guess the store is available too, I didn't...

Hi @rac0316 Here is my Svelte boileplate: https://github.com/cedeber/eukolia/tree/master/boilerplates/rollup-svelte I modified it to integrate the connector. In this commit, you can see the needed changes: https://github.com/cedeber/eukolia/commit/1e1742ddca7fac58f02760aa11b4b3c61a560283

I didn't test it with Voice Over, but on IE 11 if a visually hidden element is a flexbox child it is rendered. I mean, you don't see it but...

Ok, I test it again and the flex solution doesn't work. The magic of IE debugger.

Don't know if it helps, but happens only on release. (with target web, so I should be able to run it on the browser as generated - no npm install)

I use the `web` target, and it's not working as you can see here: https://github.com/cedeber/fluss

Looks like the culpable is, or one of the optimizations in Cargo.toml (I used `lto` and `opt-level`), or `wasm-opt` I ran after `wasm-pack`. I didn't check which one exactly yet.

I have ``` lto = true opt-level = "s" ``` so `s` instead of `z` for `opt-level` I tried: - none: works ✅ - `opt-level="s"` alone: works ✅ - `lto...

I have the same kind of bug, although related to Firefox only. When you drag a slider thumb and release the mouse above a disabled button, then the slider will...