Skip to content

Commit

Permalink
Merge branch 'main' of github.com:eolinker/eoapi into main
Browse files Browse the repository at this point in the history
  • Loading branch information
scarqin committed May 21, 2022
2 parents d2e11bc + a4796bc commit 69492cb
Show file tree
Hide file tree
Showing 7 changed files with 226 additions and 159 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dist/
!src/workbench/node/request/**/*.js
!/api/*.js


scripts/notarize.js
# dependencies
node_modules
# package-lock.json
Expand Down
22 changes: 18 additions & 4 deletions electron-builder.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"appId": ".eolinker.com",
"asar": true,
"directories": {
"output": "release/"
Expand All @@ -14,7 +15,10 @@
"src/app/common/**/*",
"!**/*.ts"
],
"publish": ["github"],
"afterSign": "builder/notarize.js",
"publish": [
"github"
],
"generateUpdatesFilesForAllChannels": true,
"nsis": {
"oneClick": false,
Expand All @@ -35,10 +39,20 @@
},
"mac": {
"icon": "src/app/common/images/512x512.png",
"target": ["default"]
"hardenedRuntime": true,
"gatekeeperAssess": false,
"target": [
"dmg",
"zip"
]
},
"dmg": {
"sign": false
},
"linux": {
"icon": "src/app/common/images/",
"target": ["AppImage"]
"target": [
"AppImage"
]
}
}
}
Loading

0 comments on commit 69492cb

Please sign in to comment.