Noah Klayman

Results 58 comments of Noah Klayman

https://github.com/avajs/ava/pull/2051

Unfortunately not as I still don't have a mac :(.

I took a look at this a little while ago and couldn't figure out what was wrong. I think updating the tauri.js cli version in the plugin will fix it,...

Sorry I never responded to this, was taking a break from open source during school. Are you still having this issue? If so, could you provide a bit more info...

Would it be better to copy electron and use main/renderer process for simplicity? Backend/api could easily be confused with a cloud server in some cases (ie "send message to backend"...

Try installing the `@firebase/app` and `@firebase/firestore` packages, then set your externals to `externals: ['@firebase/app', '@firebase/firestore/lite']`. Then, import from those packages like so: ```js import { initializeApp } from "@firebase/app"; import...

Can you share a repo that demonstrates the error? Using that import worked fine for me so I'm not sure why it won't work for you.

Try upgrading to the [v2.0 beta](https://github.com/nklayman/vue-cli-plugin-electron-builder/releases/tag/v2.0.0-beta.0). It uses a newer version of execa (used to spawn the dev server), and may fix your problem.

What happens if you run the `testWithSpectron` function in a node script (without jest)? Does it exit properly? Also, try waiting 6 seconds after calling `stopServe`, as execa should force...

Seems like it may be related to this: https://github.com/sindresorhus/execa/issues/96. I'm not sure what else it could be, as [stopServe kills it pretty clearly](https://github.com/nklayman/vue-cli-plugin-electron-builder/blob/54f9b6b2907db0e542aea7c2af4dacef551efe15/lib/testWithSpectron.js#L68-L71). I'll see if I can find a...