Is there any possibility to customize the output directory, i.e. to write in another folder than dist?
It's possible for Windows. In your root package.json:
"build": {
"osx": {
...
}
"win": {
"outputDirectory": "release"
}
}
Note: release directory is in relative to your root directory (where your package.json is).
The problem here is that electron-builder expects it to be in dist and it will try to move files around and will cause error.
Not yet. Will be implemented on weekends.
Most helpful comment
It's possible for Windows. In your root package.json:
Note:
releasedirectory is in relative to your root directory (where your package.json is).The problem here is that
electron-builderexpects it to be in dist and it will try to move files around and will cause error.