Braden Wiggins

Results 48 comments of Braden Wiggins

I've been struggling with this issue in Brave Browser as well. It seems to create spaghetti once something updates (and I suspect it doesn't properly remove nodes from the graph...

[Line 120](https://github.com/formkit/auto-animate/blob/master/src/index.ts#L120) might be a problem: ```ts const { offsetWidth, offsetHeight } = root ``` `offsetWidth` and `offsetHeight` were removed from `SVGElement` years ago... but it still works 🤔

I hope this gets fixed!   In the meantime, this dirty hack helped me get Sveltekit to compile: ```ts // src/lib/autoAnimate.ts import type { Action } from 'svelte/action' import autoAnimate...

Thanks @msyfls123! I will take a look! @shirakaba As far as Vite goes, it's built on rollup and supports all rollup config options. Sveltekit is built on Vite which is...

Not sure if this would help: https://github.com/lukeed/svelte-preprocess-esbuild

Just want to drop these in case they can be of use: Tree-sitter go bindings https://github.com/smacker/go-tree-sitter and https://github.com/Himujjal/tree-sitter-svelte.

> I'm tinkering with Svelte but nothing concrete yet :) Svelte supports Vanilla JS natively, so like all JS libs, PTS works great in Svelte out of the box. `PT.svelte`...

Hey! It appears as though the resize callback only fires once during initialization. Just to clarify- should I be passing in an event listening attached to the window or canvas,...