Skip to content

Commit 93475e5

Browse files
committed
Add snap packaging option
Add snap packaging with electron-builder Specified removable-media as additional interface Specified snap confinement as strict Fix unused icon in NotePageToolbar
1 parent ca2ebab commit 93475e5

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,21 @@
179179
"mac": {
180180
"icon": "static/icon.icns"
181181
},
182+
"snap": {
183+
"confinement": "strict",
184+
"plugs": [
185+
"default",
186+
"removable-media"
187+
]
188+
},
182189
"linux": {
190+
"executableName": "boostnote-next",
183191
"icon": "static/icon.icns",
184192
"target": [
185193
"deb",
186194
"rpm",
187-
"AppImage"
195+
"AppImage",
196+
"snap"
188197
]
189198
},
190199
"win": {

0 commit comments

Comments
 (0)