Files
WowUp/wowup-electron/electron-builder.json
2021-02-01 15:36:44 -06:00

66 lines
1.4 KiB
JSON

{
"productName": "WowUp",
"appId": "io.wowup.jliddev",
"directories": {
"output": "release/"
},
"afterSign": "./electron-build/after-sign.js",
"generateUpdatesFilesForAllChannels": true,
"publish": ["github"],
"nodeGypRebuild": true,
"files": [
"**/*",
"**\\*",
"build/Release/*.node",
"src/common/**/*.js",
"!**/*.ts",
"!**/*.scss",
"!**/*.map",
"!*.code-workspace",
"!LICENSE.md",
"!package.json",
"!package-lock.json",
"!src/app/*",
"!src/assets/*",
"!src/environments/*",
"!src/*.html",
"!src/*.js",
"!src/*.json",
"!e2e/",
"!hooks/",
"!angular.json",
"!_config.yml",
"!karma.conf.js",
"!tsconfig.json",
"!tslint.json",
"!**/.vscode/*",
"!node_modules/@angular",
"!native/",
"!*.npmrc",
"!*.eslintrc.json",
"!binding.gyp",
"!angular.webpack.js",
"!tsconfig*.json"
],
"win": {
"icon": "electron-build/icon.ico",
"target": ["nsis", "portable"],
"forceCodeSigning": true,
"publisherName": "WowUp LLC"
},
"nsis": {
"deleteAppDataOnUninstall": true
},
"mac": {
"icon": "electron-build/icon.icns",
"category": "public.app-category.games",
"target": ["default"],
"hardenedRuntime": true,
"entitlements": "./electron-build/entitlements.mac.plist"
},
"linux": {
"icon": "electron-build/icon.icns",
"target": ["AppImage"]
}
}