Skip to content

Commit

Permalink
upgrade build dependencies
Browse files Browse the repository at this point in the history
see #2466
  • Loading branch information
PalmerAL committed Jul 22, 2024
1 parent 4815573 commit b2c6cd7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"dependencies": {
"@electron/fuses": "^1.7.0",
"chokidar": "^3.5.3",
"chokidar": "^3.6.0",
"dexie": "^3.0.3",
"dragula": "github:minbrowser/dragula",
"electron-squirrel-startup": "^1.0.0",
Expand All @@ -49,10 +49,8 @@
"concurrently": "^5.2.0",
"decomment": "^0.9.0",
"electron": "29.3.2",
"electron-builder": "^22.14.13",
"electron-builder": "^24.13.3",
"electron-installer-windows": "^3.0.0",
"electron-packager": "^15.1.0",
"electron-rebuild": "^3.2.7",
"electron-renderify": "0.0.2",
"prebuild-install": "^7.0.1",
"prettier": "^2.2.1",
Expand Down
1 change: 1 addition & 0 deletions scripts/buildAppImage.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ require('./createPackage.js')('linux', {arch: Arch.x64}).then(function (path) {
directories: {
output: 'dist/app/'
},
publish: null
}

builder.build({
Expand Down
3 changes: 2 additions & 1 deletion scripts/buildDebian.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ require('./createPackage.js')('linux', { arch: toArch(platform) }).then(function
buildResources: 'resources',
output: 'dist/app/'
},
deb: installerOptions
deb: installerOptions,
publish: null
}

builder.build({
Expand Down
3 changes: 2 additions & 1 deletion scripts/buildRedhat.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ require('./createPackage.js')('linux', { arch: Arch.x64 }).then(function (path)
directories: {
output: 'dist/app/'
},
rpm: installerOptions
rpm: installerOptions,
publish: null
}

builder.build({
Expand Down
3 changes: 2 additions & 1 deletion scripts/createPackage.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ module.exports = function (platform, extraOptions) {
}
],
asar: false,
afterPack: afterPack
afterPack: afterPack,
publish: null
}

const target = (function () {
Expand Down

0 comments on commit b2c6cd7

Please sign in to comment.