Skip to content

Commit

Permalink
Add snap packaging option
Browse files Browse the repository at this point in the history
Add snap packaging with electron-builder
Specified removable-media as additional interface
Specified snap confinement as strict
Fix unused icon in NotePageToolbar
  • Loading branch information
Komediruzecki committed Dec 9, 2020
1 parent 5271232 commit b1773e5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,21 @@
"mac": {
"icon": "static/icon.icns"
},
"snap": {
"confinement": "strict",
"plugs": [
"default",
"removable-media"
]
},
"linux": {
"executableName": "boostnote-next",
"icon": "static/icon.icns",
"target": [
"deb",
"rpm",
"AppImage"
"AppImage",
"snap"
]
},
"win": {
Expand Down

0 comments on commit b1773e5

Please sign in to comment.