Ben McCann
Ben McCann
> storybook, vite and astro would be good ones to try out and i know enough people at each that i can get some feedback Just FYI, there was some...
Having the source written in JS rather than TS was quite nice in terms of package size because it meant that source maps weren't required. I'm afraid the package is...
Another thing that would be useful is a comparison to other packages. E.g. what's the difference between this and https://github.com/kaisermann/svelte-preprocess?
Cool! I didn't have any specific ideas. But if you run into any trouble getting started with SvelteKit please let me know and I'd be happy to lend some pointers!
You should be able to switch between these various modes simply by toggling a flag in the config: - hybrid - this is the default - full MPA - set...
@cayolblake I don't want to have this discussion here as it'd way off topic. Please post on the Svelte Discord for help
I don't use animations anywhere in my app. It'd be nice if the animation code were not included in that case
It looks like there's a pending PR to do the upgrade: https://github.com/storybookjs/addon-svelte-csf/pull/19
https://github.com/facebook/jest/issues/9430 makes several references to `import.meta`. Is it still not available now that we're running with ESM? Or is the issue that the stuff Vite sticks there isn't being populated?
Yeah, I think there's a couple ways to do test setup: - @patrickleet's [`TestHarness.svelte`](https://github.com/CloudNativeEntrepreneur/sveltekit-eventsourced-funnel/blob/master/__tests__/unit/helpers/TestHarness.svelte) along with `babel-plugin-transform-vite-meta-env` - Or Jest's brand new, experimental, and undocumented `unstable_mockModule` I'm not sure what...