Willow (GHOST)

Results 112 comments of Willow (GHOST)

If needed there is a svelte version: https://npmjs.com/svelte-hamburgers

@Danktuary I'll see if I can get around it but no guarantees :sweat_smile: p.s. Svelte is awesome!

As a workaround you can add this to your vite config: ```js optimizeDeps: { exclude: ['ipfs-http-client', 'electron-fetch'] } ```

In terms of options to auto generate types, you can either stick with the current rollup build system and use `sveld` to generate types. Or you can switch to sveltekit...

What would you expect to happen if you did: ```html let value = undefined; ```

ESM Supports importing from esm or cjs so that isn't an issue. Especially when using typescript as there are extra compatibility features. The type issue I found is the lack...

This is the console output: ```sh > rollup -c src/index.js → ./dist/index.mjs, ./dist/index.js... created ./dist/index.mjs, ./dist/index.js in 329ms SyntaxError: ';' expected. (19:25) 17 | 18 | > 19 | x:...