Compare commits
No commits in common. "feature/new_feature" and "main" have entirely different histories.
feature/ne
...
main
|
|
@ -1,21 +1,43 @@
|
||||||
|
// @see - https://www.electron.build/configuration/configuration
|
||||||
{
|
{
|
||||||
appId: "com.yourcompany.edge-proxy-manager",
|
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
|
||||||
productName: "EdgeProxyManager",
|
"appId": "YourAppID",
|
||||||
compression: "store",
|
"asar": true,
|
||||||
files: ["dist-electron/main.js", "dist-electron/preload.mjs", "dist/**"],
|
"productName": "YourAppName",
|
||||||
|
"directories": {
|
||||||
linux: {
|
"output": "release/${version}"
|
||||||
target: [
|
|
||||||
{
|
|
||||||
target: "AppImage",
|
|
||||||
arch: ["arm64"],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
target: "tar.gz",
|
|
||||||
arch: ["arm64"],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
category: "Utility",
|
|
||||||
icon: "public/icon.png",
|
|
||||||
},
|
},
|
||||||
|
"files": [
|
||||||
|
"dist",
|
||||||
|
"dist-electron"
|
||||||
|
],
|
||||||
|
"mac": {
|
||||||
|
"target": [
|
||||||
|
"dmg"
|
||||||
|
],
|
||||||
|
"artifactName": "${productName}-Mac-${version}-Installer.${ext}"
|
||||||
|
},
|
||||||
|
"win": {
|
||||||
|
"target": [
|
||||||
|
{
|
||||||
|
"target": "nsis",
|
||||||
|
"arch": [
|
||||||
|
"x64"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"artifactName": "${productName}-Windows-${version}-Setup.${ext}"
|
||||||
|
},
|
||||||
|
"nsis": {
|
||||||
|
"oneClick": false,
|
||||||
|
"perMachine": false,
|
||||||
|
"allowToChangeInstallationDirectory": true,
|
||||||
|
"deleteAppDataOnUninstall": false
|
||||||
|
},
|
||||||
|
"linux": {
|
||||||
|
"target": [
|
||||||
|
"AppImage"
|
||||||
|
],
|
||||||
|
"artifactName": "${productName}-Linux-${version}.${ext}"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue