Skip to content

Commit

Permalink
chore: explicitly define artifact names per build target
Browse files Browse the repository at this point in the history
  • Loading branch information
Splode committed Jan 5, 2020
1 parent bfe563b commit bbfcd35
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,27 @@
]
},
"mac": {
"icon": "build/icons/icon.icns"
"artifactName": "pomotroid-${version}-macos.${ext}",
"category": "public.app-category.productivity",
"icon": "./build/icons/icon.icns"
},
"win": {
"icon": "build/icons/icon.ico",
"icon": "./build/icons/icon.ico",
"target": [
"nsis",
"portable"
]
},
"nsis": {
"artifactName": "pomotroid-${version}-setup.${ext}"
},
"portable": {
"artifactName": "pomotroid-${version}-portable.${ext}"
},
"linux": {
"icon": "build/icons",
"artifactName": "pomotroid-${version}-linux.${ext}",
"category": "Utility",
"icon": "./build/icons",
"target": [
"AppImage",
"deb",
Expand Down

0 comments on commit bbfcd35

Please sign in to comment.