Skip to content

Commit

Permalink
Fix build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Mar 11, 2023
1 parent 8895cb6 commit f145813
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,41 @@
"category": "public.app-category.music",
"target": [
"default"
],
"target": [
{
"target": "dmg",
"arch": [
"universal"
]
}
]
},
"linux": {
"category": "Audio",
"target": "AppImage"
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"armv7l",
"arm64"
]
}
]
},
"nsis": {
"perMachine": true
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
}
},
"contributors": [
Expand Down Expand Up @@ -125,7 +152,7 @@
"scripts": {
"build": "run-s clean build:*",
"build:assets": "browserify --no-bundle-external --debug renderer/player/index.js -o renderer/player/bundle.js",
"build:electron": "electron-builder --dir",
"build:electron": "electron-builder",
"clean": "rm -rf renderer/**/bundle.js && mkdir -p dist",
"clear": "electron scripts/clear.js",
"pkg": "run-s clean pkg:*",
Expand Down

0 comments on commit f145813

Please sign in to comment.