48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/electron-userland/electron-builder/refs/heads/master/packages/app-builder-lib/scheme.json
|
|
appId: com.furtherverse.desktop
|
|
productName: Furtherverse
|
|
executableName: furtherverse
|
|
|
|
npmRebuild: false
|
|
asarUnpack:
|
|
- resources/**
|
|
|
|
files:
|
|
- "!**/.vscode/*"
|
|
- "!src/*"
|
|
- "!electron.vite.config.{js,ts,mjs,cjs}"
|
|
- "!{.env,.env.*,bun.lock}"
|
|
- "!{tsconfig.json,tsconfig.node.json}"
|
|
- "!{AGENTS.md,README.md,CHANGELOG.md}"
|
|
|
|
# macOS
|
|
mac:
|
|
target:
|
|
- dmg
|
|
category: public.app-category.productivity
|
|
extraResources:
|
|
- from: ../server/out/server-darwin-arm64
|
|
to: server
|
|
dmg:
|
|
artifactName: ${productName}-${version}-${os}-${arch}.${ext}
|
|
|
|
# Windows
|
|
win:
|
|
target: portable
|
|
extraResources:
|
|
- from: ../server/out/server-windows-x64.exe
|
|
to: server.exe
|
|
portable:
|
|
artifactName: ${productName}-${version}-${os}-${arch}-Portable.${ext}
|
|
|
|
# Linux
|
|
linux:
|
|
target:
|
|
- AppImage
|
|
category: Utility
|
|
extraResources:
|
|
- from: ../server/out/server-linux-x64
|
|
to: server
|
|
appImage:
|
|
artifactName: ${productName}-${version}-${os}-${arch}.${ext}
|