Ivan Čurić

Results 38 comments of Ivan Čurić

Still doesn't work. If importing the default export, I get the following error: ``` TypeError: comlink is not a function ```

Here's my repro: https://github.com/ivancuric/vite-workers/tree/repro-broken-comlink ``` failed to load config from /Users/ivan/Dev/vite-workers/vite.config.js error when starting dev server: TypeError: comlink is not a function at file:///Users/ivan/Dev/vite-workers/vite.config.js?t=1653404879713:4:13 at ModuleJob.run (node:internal/modules/esm/module_job:198:25) at async Promise.all...

It's the `"type": "module"` in the project's package.json which breaks it. This instructs the project to use esm module resolution with node 16+ Seems that something is broken with the...

It does, but it should be using the .mjs I think. I can't get it to load the mjs file. I've tried adding `"type": "module"` to your package.json, but then...

I have it as it's kinda the new standard, not much else. I also had some errors with https://github.com/liuweiGL/vite-plugin-mkcert which I fixed by calling `mkcert.default()` instead of `mkcert()` Could this...

Any updates on this issue? It's kind of a roadblock.

To be honest, I don't know how I should go back with only the touchbar/swipe gestures, which ssb emulates. :\

I am just working on how to persist app data inside an electron app, and just came across both these packages and this issue. How is `electron-store` different from `conf`?...

> only one process, the main process can write to the store directly Would it be a good idea to expose `electron-store` directly in the renderer process via preload? I...