mirror of
https://github.com/yuruotong1/autoMate.git
synced 2026-03-22 04:57:18 +08:00
59 lines
2.0 KiB
YAML
59 lines
2.0 KiB
YAML
appId: com.electron.app
|
||
productName: automate
|
||
directories:
|
||
buildResources: build
|
||
files:
|
||
- '!**/.vscode/*'
|
||
- '!src/*'
|
||
- '!electron.vite.config.{js,ts,mjs,cjs}'
|
||
- '!{.eslintignore,.eslintrc.cjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}'
|
||
- '!{.env,.env.*,.npmrc,pnpm-lock.yaml}'
|
||
- '!{tsconfig.json,tsconfig.node.json,tsconfig.web.json}'
|
||
extraFiles:
|
||
- from: '../server/dist/autoMateServer'
|
||
filter: '**/*'
|
||
- from: './resources'
|
||
to: 'resources'
|
||
filter: '**/*'
|
||
asarUnpack:
|
||
- resources/**
|
||
win:
|
||
executableName: automate
|
||
nsis:
|
||
oneClick: false # 创建一键安装程序还是辅助安装程序(默认是一键安装)
|
||
allowElevation: true # 是否允许请求提升,如果为false,则用户必须使用提升的权限重新启动安装程序 (仅作用于辅助安装程序)
|
||
allowToChangeInstallationDirectory: true # 是否允许修改安装目录 (仅作用于辅助安装程序)
|
||
createStartMenuShortcut: true # 是否创建开始菜单快捷方式
|
||
artifactName: ${name}-${version}-setup.${ext}
|
||
shortcutName: ${productName}
|
||
uninstallDisplayName: ${productName}
|
||
createDesktopShortcut: always
|
||
mac:
|
||
entitlementsInherit: build/entitlements.mac.plist
|
||
extendInfo:
|
||
- NSCameraUsageDescription: Application requests access to the device's camera.
|
||
- NSMicrophoneUsageDescription: Application requests access to the device's microphone.
|
||
- NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder.
|
||
- NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder.
|
||
notarize: false
|
||
dmg:
|
||
artifactName: ${name}-${version}.${ext}
|
||
linux:
|
||
target:
|
||
- AppImage
|
||
- snap
|
||
- deb
|
||
maintainer: electronjs.org
|
||
category: Utility
|
||
appImage:
|
||
artifactName: ${name}-${version}.${ext}
|
||
npmRebuild: false
|
||
publish:
|
||
provider: github
|
||
owner: yuruotong1
|
||
repo: autoMate
|
||
releaseType: 'release'
|
||
|
||
electronDownload:
|
||
mirror: https://npmmirror.com/mirrors/electron/
|