mirror of
https://github.com/cucumber-sp/yandex-music-linux.git
synced 2024-12-24 14:34:39 +03:00
45 lines
914 B
JavaScript
45 lines
914 B
JavaScript
|
const commonOptions = {
|
||
|
icon: {
|
||
|
"48x48": "build/next-desktop/favicon.png",
|
||
|
"scalable": "build/next-desktop/favicon.svg"
|
||
|
},
|
||
|
desktopTemplate: "./desktop.ejs"
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
packagerConfig: {
|
||
|
asar: true,
|
||
|
},
|
||
|
rebuildConfig: {},
|
||
|
makers: [
|
||
|
{
|
||
|
name: '@electron-forge/maker-zip',
|
||
|
platforms: ['linux']
|
||
|
},
|
||
|
{
|
||
|
name: '@electron-forge/maker-deb',
|
||
|
config: {
|
||
|
options: {
|
||
|
...commonOptions,
|
||
|
maintainer: 'Cucumber Space',
|
||
|
homepage: 'https://github.com/cucumber-sp/yandex-music-linux'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
name: '@electron-forge/maker-rpm',
|
||
|
config: {
|
||
|
options: {
|
||
|
...commonOptions,
|
||
|
homepage: 'https://github.com/cucumber-sp/yandex-music-linux'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
plugins: [
|
||
|
{
|
||
|
name: '@electron-forge/plugin-auto-unpack-natives',
|
||
|
config: {},
|
||
|
},
|
||
|
],
|
||
|
};
|