Erick Zhao
Erick Zhao
Personally a -1 on additional linting checks for now because I often use gitbook.com to author my changes to this repository and they don't support exporting their changelists to GitHub...
Can't seem to repro on my end on NPM 8: ``` > npm init electron-app@latest my-app -- --template=webpack-typescript --force ✔ Locating custom template: "webpack-typescript" ✔ Initializing directory › ⚠ The...
Seems I can repro reliably on NPM 6, though. I think something changed with `npm init` between major versions. We should probably change the docs so that it can hopefully...
The check in `electron-winstaller` is fairly naive: ```ts const monoExe = 'mono'; const wineExe = ['arm64', 'x64'].includes(process.arch) ? 'wine64' : 'wine'; if (process.platform !== 'win32') { useMono = true; const...
Hey @MariaSemple @gtritchie, looking into this issue it does seem like this is a regression in behaviour, but I think the previous functioning behaviour was unintended. On Windows, Packager modifies...
Seems like this is mostly around issues with invalid certs or notarization failures. Closing because it isn't actionable on our end.
👋 Hey there. Was there anything useful in the setup logs? As far as I know, there's nothing preventing Forge apps to be used on Windows 10. A minimal reproduction...
Hey, I'm unable to reproduce this issue out of the box with a fresh installation of Forge + the `get-windows` directry. Here's my repro code: https://github.com/erickzhao/electron-forge-repros/commit/56e57784f3345196a185c4008eea3a02c5e09132 Here's a screenshot of...
Hey @bearsworth, thanks for the response. My tester code also compiled for me on Windows 11 x64, with two caveats: * I think there was some ESM/CJS interop stuff that...
Related as well: https://github.com/electron/forge/issues/3118