mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-22 14:41:04 +01:00
feat: updated electron builder config to use js based config
This commit is contained in:
parent
c27c750c3e
commit
d62881fe0d
56
packages/bruno-electron/electron-builder-config.js
Normal file
56
packages/bruno-electron/electron-builder-config.js
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
require('dotenv');
|
||||||
|
|
||||||
|
const config = {
|
||||||
|
"appId": "com.usebruno.app",
|
||||||
|
"productName": "Bruno",
|
||||||
|
"electronVersion": "21.1.1",
|
||||||
|
"directories": {
|
||||||
|
"buildResources": "resources",
|
||||||
|
"output": "out"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"**/*"
|
||||||
|
],
|
||||||
|
"afterSign": "notarize.js",
|
||||||
|
"mac": {
|
||||||
|
"artifactName": "${name}_${version}_${arch}_${os}.${ext}",
|
||||||
|
"category": "public.app-category.developer-tools",
|
||||||
|
"target": [
|
||||||
|
{
|
||||||
|
"target": "dmg",
|
||||||
|
"arch": [
|
||||||
|
"x64",
|
||||||
|
"arm64"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"target": "zip",
|
||||||
|
"arch": [
|
||||||
|
"x64",
|
||||||
|
"arm64"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"icon": "resources/icons/mac/icon.icns",
|
||||||
|
"hardenedRuntime": true,
|
||||||
|
"identity": "Anoop MD (W7LPPWA48L)",
|
||||||
|
"entitlements": "resources/entitlements.mac.plist",
|
||||||
|
"entitlementsInherit": "resources/entitlements.mac.plist"
|
||||||
|
},
|
||||||
|
"linux": {
|
||||||
|
"artifactName": "${name}_${version}_${arch}_linux.${ext}",
|
||||||
|
"icon": "resources/icons/png",
|
||||||
|
"target": [
|
||||||
|
"AppImage",
|
||||||
|
"deb"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"win": {
|
||||||
|
"artifactName": "${name}_${version}_${arch}_win.${ext}",
|
||||||
|
"icon": "resources/icons/png",
|
||||||
|
"certificateFile": `${process.env.WIN_CERT_FILEPATH}`,
|
||||||
|
"certificatePassword": `${process.env.WIN_CERT_PASSWORD}`,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = config;
|
@ -1,37 +0,0 @@
|
|||||||
appId: com.usebruno.app
|
|
||||||
productName: Bruno
|
|
||||||
electronVersion: 21.1.1
|
|
||||||
directories:
|
|
||||||
buildResources: resources
|
|
||||||
output: out
|
|
||||||
files:
|
|
||||||
- "**/*"
|
|
||||||
afterSign: notarize.js
|
|
||||||
mac:
|
|
||||||
artifactName: ${name}_${version}_${arch}_${os}.${ext}
|
|
||||||
category: public.app-category.developer-tools
|
|
||||||
target:
|
|
||||||
- target: dmg
|
|
||||||
arch:
|
|
||||||
- x64
|
|
||||||
- arm64
|
|
||||||
- target: zip
|
|
||||||
arch:
|
|
||||||
- x64
|
|
||||||
- arm64
|
|
||||||
icon: resources/icons/mac/icon.icns
|
|
||||||
hardenedRuntime: true
|
|
||||||
identity: "Anoop MD (W7LPPWA48L)"
|
|
||||||
entitlements: resources/entitlements.mac.plist
|
|
||||||
entitlementsInherit: resources/entitlements.mac.plist
|
|
||||||
linux:
|
|
||||||
artifactName: ${name}_${version}_${arch}_linux.${ext}
|
|
||||||
icon: resources/icons/png
|
|
||||||
target:
|
|
||||||
- AppImage
|
|
||||||
- deb
|
|
||||||
win:
|
|
||||||
artifactName: ${name}_${version}_${arch}_win.${ext}
|
|
||||||
icon: resources/icons/png
|
|
||||||
certificateFile: sectigo.pfx
|
|
||||||
certificatePassword: "secret"
|
|
@ -9,7 +9,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"dev": "electron .",
|
"dev": "electron .",
|
||||||
"dist": "electron-builder --win --linux --mac",
|
"dist": "electron-builder --win --linux --mac --config electron-builder-config.js",
|
||||||
"pack": "electron-builder --dir"
|
"pack": "electron-builder --dir"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
Loading…
Reference in New Issue
Block a user