Matthew Scharley
Matthew Scharley
I think I might be running into this too: https://github.com/mscharley/scalajs-electron-demo/blob/791e088f3c0ed26fe9c27e8895f75df505d1dfee/src/main/scala/autowire/electronipc/ElectronIpcWireServer.scala What needs to be done to get this sort of thing working?
Hmm, ok, according to the documentation in TypeScript the official definition is: ``` prompt(message?: string, _default?: string): string | null; ``` For the sake of being able to do something...
I work with @erangakm . Yes, it'd be an option and that was going to be our fallback, but we aren't already using Babel as the application itself is using...
Yeah, similarly we don't have any real strong opinions either way. We can setup babel if we need to, we just weren't sure what the intention was here as the...
Any feedback from Apple on this? Seems like this is still active currently.
I'm still getting an error flagged in 1.9.1 from `LIMIT_NAVIGATION_GLOBAL_CHECK` when using setWindowOpenHandler as below: ``` this._window.webContents.setWindowOpenHandler((details) => { if (this.isAllowedInternalNavigationUrl(details.url)) { return { action: 'allow' }; } else {...
A few things to reply: 1. It shouldn't really fail with a vague exception, even if this isn't exactly supported. 2. nodemon shouldn't be running it twice, but RLS does...
So, nodemon definitely doesn't wait for things to finish before restarting as far as I'm aware. But I also ran into this issue when just running `esy build` manually too...
On second thoughts, I don't think this is a good idea for `ocaml-graphql` specifically (because of their API) so I might not need this personally. It's still an interesting idea...
Yeah, about the only way that I can see this working with `ocaml-graphql` is if you generated the entire integration with that library. It really wants to manage the definition...