Skip to content

Commit

Permalink
Preparations for macOS signing
Browse files Browse the repository at this point in the history
  • Loading branch information
pverscha committed Mar 5, 2020
1 parent 460fbde commit 49a278d
Show file tree
Hide file tree
Showing 3 changed files with 127 additions and 18 deletions.
124 changes: 114 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"better-sqlite3": "^5.4.3",
"chokidar": "^3.3.1",
"core-js": "^2.6.9",
"electron-updater": "^2.2.4",
"jquery": "^3.4.1",
"regenerator-runtime": "^0.13.3",
"vue": "^2.6.10",
Expand Down
20 changes: 12 additions & 8 deletions vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,18 @@ module.exports = {
pluginOptions: {
electronBuilder: {
builderOptions: {
"appId": "be.ugent.unipept.desktop",
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"afterSign": "scripts/notarize.js"
"appId": "be.ugent.unipept.desktop"
// Disable code signing for now.
// "mac": {
// "hardenedRuntime": true,
// "gatekeeperAssess": false,
// "entitlements": "build/entitlements.mac.plist",
// "entitlementsInherit": "build/entitlements.mac.plist"
// },
// "afterSign": "scripts/notarize.js",
// "dmg": {
// "sign": false
// }
},
}
}
Expand Down

0 comments on commit 49a278d

Please sign in to comment.