-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
85 lines (85 loc) · 2.06 KB
/
electron-builder.yml
File metadata and controls
85 lines (85 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
appId: com.fleet.app
productName: Fleet
directories:
buildResources: build
output: dist
files:
- '!**/.vscode/*'
- '!src/*'
- '!electron.vite.config.{js,ts,mjs,cjs}'
- '!{.eslintcache,eslint.config.mjs,.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}'
- '!reference/**'
- '!docs/**'
extraResources:
- from: hooks/bin/
to: hooks/
- from: resources/mascots/
to: resources/mascots/
- from: resources/pi-extensions/
to: pi-extensions/
- from: resources/pi-skills/
to: pi-skills/
asarUnpack:
- resources/**
mac:
target:
- target: dmg
arch:
- arm64
- x64
- target: zip
arch:
- arm64
- x64
category: public.app-category.developer-tools
hardenedRuntime: true
gatekeeperAssess: false
entitlements: build/entitlements.mac.plist
entitlementsInherit: build/entitlements.mac.plist
notarize: true
win:
target:
- target: nsis
arch:
- x64
executableName: Fleet
nsis:
oneClick: false
perMachine: false
allowToChangeInstallationDirectory: true
artifactName: ${name}-${version}-setup.${ext}
shortcutName: ${productName}
uninstallDisplayName: ${productName}
createDesktopShortcut: always
dmg:
artifactName: ${name}-${version}-${arch}.${ext}
linux:
target:
- target: deb
arch:
- x64
- target: rpm
arch:
- x64
- target: AppImage
arch:
- x64
maintainer: Khang Nguyen <khang859@users.noreply.github.com>
vendor: Fleet
synopsis: Terminal multiplexer for AI coding agents
description: A lightweight, cross-platform terminal multiplexer desktop app for developers running multiple AI coding agents simultaneously.
category: Development
executableName: fleet
appImage:
artifactName: ${name}-${version}.${ext}
deb:
artifactName: ${name}_${version}_${arch}.${ext}
rpm:
artifactName: ${name}-${version}.${arch}.${ext}
npmRebuild: true
publish:
provider: github
owner: khang859
repo: fleet