Jovica Aleksic

Results 159 comments of Jovica Aleksic

@b-zurg I am as confused as you are :) I was also searching for runnerw via Google and didn't find anything solid (besides what you report). In the "naive" tests...

Hi. I haven't worked with electron in a long time, but I guess it's still working. And I don't have actual code - all I did was hack the line...

@IhorVimmi are you using `if (module.hot) hot.accept()` in the main file?

When invoked without any arguments, as in the snippet you posted, all and any changes are accepted as hot and the process is not restarted. For module dependencies ("children" of...

When I needed a preload script, I also ran into various issues. In the end I was happy with the workaround of treating the preload script as a static asset...

Hmm have you tried without the magic @ in the path?

This is not related to an import starting with @. It is due to webpack externals and what's called whitelisting in electron-webpack. You can read a lot about it if...

Furthermore, the problem at its core is that you need to have exactly one copy of react in your project. Otherwise you run into exactly your problem. However, when your...

Hehe. Well... It's complicated, and needlessly so :) Electron-webpack has a hard-coded feature that puts all package names found in the package.json `dependencies` (not `devDependencies`!) to the webpack externals. I...

electron-webpack supports a .env file - maybe you can create a symlink or on postinstall?