YesPlayMusic/packages/electron/.electron-builder.config.js

125 lines
2.8 KiB
JavaScript
Raw Normal View History

2022-03-13 14:40:38 +08:00
/**
* @type {import('electron-builder').Configuration}
* @see https://www.electron.build/configuration/configuration
*/
2022-05-12 02:45:43 +08:00
2022-03-13 14:40:38 +08:00
module.exports = {
2022-03-17 14:45:04 +08:00
appId: 'com.qier222.yesplaymusic',
2022-03-13 14:40:38 +08:00
productName: 'YesPlayMusic',
copyright: 'Copyright © 2022 ${author}',
asar: true,
2022-03-13 14:40:38 +08:00
directories: {
output: 'release',
2022-03-13 14:40:38 +08:00
buildResources: 'build',
},
npmRebuild: false,
buildDependenciesFromSource: true,
files: ['./dist'],
publish: [
{
provider: 'github',
owner: 'qier222',
repo: 'YesPlayMusic',
vPrefixedTagName: true,
releaseType: 'draft',
},
],
2022-03-13 14:40:38 +08:00
win: {
target: [
{
target: 'nsis',
arch: ['x64'],
},
{
target: 'nsis',
arch: ['arm64'],
},
{
target: 'portable',
arch: ['x64'],
},
2022-03-13 14:40:38 +08:00
],
publisherName: 'qier222',
icon: 'build/icons/icon.ico',
2022-03-13 14:40:38 +08:00
},
nsis: {
oneClick: false,
perMachine: true,
2022-03-13 14:40:38 +08:00
allowToChangeInstallationDirectory: true,
deleteAppDataOnUninstall: true,
artifactName: '${productName}-${version}-${os}-${arch}-Setup.${ext}',
},
portable: {
artifactName: '${productName}-${version}-${os}-${arch}-Portable.${ext}',
2022-03-13 14:40:38 +08:00
},
mac: {
target: [
{
target: 'dmg',
arch: ['x64', 'arm64', 'universal'],
},
],
artifactName: '${productName}-${version}-${os}-${arch}.${ext}',
darkModeSupport: true,
category: 'public.app-category.music',
},
dmg: {
icon: 'build/icons/icon.icns',
2022-03-13 14:40:38 +08:00
},
linux: {
target: [
{
target: 'deb',
arch: ['x64', 'arm64', 'armv7l'],
},
{
target: 'AppImage',
arch: ['x64'],
},
{
target: 'snap',
arch: ['x64'],
},
{
target: 'pacman',
arch: ['x64'],
},
{
target: 'rpm',
arch: ['x64'],
},
{
target: 'tar.gz',
arch: ['x64'],
},
],
artifactName: '${productName}-${version}-${os}.${ext}',
category: 'Music',
icon: './build/icon.icns',
2022-03-13 14:40:38 +08:00
},
2022-03-17 14:45:04 +08:00
files: [
'dist/main/**/*',
'dist/renderer/**/*',
2022-04-02 00:45:20 +08:00
{
2022-05-12 02:45:43 +08:00
from: 'packages/electron/migrations',
2022-04-02 00:45:20 +08:00
to: 'dist/main/migrations',
},
{
from: 'src/main/assets',
to: 'dist/main/assets',
},
2022-04-02 00:45:20 +08:00
'!**/node_modules/*/{*.MD,*.md,README,readme}',
2022-03-17 14:45:04 +08:00
'!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}',
'!**/node_modules/*.d.ts',
'!**/node_modules/.bin',
'!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}',
'!.editorconfig',
'!**/._*',
'!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}',
'!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}',
'!**/{appveyor.yml,.travis.yml,circle.yml}',
'!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json,pnpm-lock.yaml}',
2022-04-02 00:45:20 +08:00
'!**/*.{map,debug.min.js}',
2022-03-17 14:45:04 +08:00
],
2022-03-13 14:40:38 +08:00
}