Andreas Dolk
Andreas Dolk
The remote module was finally removed with Electron 14. We can now use @electron/remote as a replacement. Nevertheless. I get a lot of 'call stack exceeded' issue now, probably because...
Same issue here - electron 4.0.4, devtron 1.4.0, MacOS 10.14.1 Load Graph does not work, throws this exception: ``` [62686:0223/173554.220149:ERROR:CONSOLE(1609)] "Loading render modules failed", source: chrome-extension://devtron/out/index.js (1609) [62686:0223/173554.220223:ERROR:CONSOLE(1610)] "RangeError: Maximum...
Yes - it does. Nothing changes. I still have that error reported on the editor. And it's not limited to the electron library and independent from import or require: ...
@r00t3g BTW - when I import `ipcRenderer` from `electron/renderer` then webstorm compiles and rollup does not crash on the build - but it fails at runtime with an error on...
Update on the workaround: it seems that the plugin currently requires the `svelte` file being imported by _any_ typescript file. It doesn't even have to be a script that is...
Probably a duplicate of/linked to https://youtrack.jetbrains.com/issue/WEB-51050 I had the same issue with arrays also and adding the files to my `dummy-imports.ts` as a workaround also solved it.
I ran into a similiar problem with `context="module"`. Their exports are also not visible although it compiles and works fine *Provider.svelte* ```svelte export const foo:string = 'bar'; ``` *Main.svelte* (with...
The `remote` module was removed with Electron 14 which has just been released. `electron-redux` now needs to be updated to use `@electron/remote` instead, which is a full replacement.
https://github.com/klarna/electron-redux/pull/314 seems to fix it. The ipc channel name there should probably be changed to some UUID or `get-redux-state-` to further reduce the risk of channel name clashes, just in...
@seanmacisaac - it works with the 2.x version. I migrated my project and I'm on electron 14 since a while (with electron-redux)