-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
61 lines (55 loc) · 1.19 KB
/
electron-builder.yml
File metadata and controls
61 lines (55 loc) · 1.19 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
# Electron Builder Configuration (Alternative to Forge)
# This file is optional - use if you prefer electron-builder over forge
appId: com.yourcompany.screenpilot
productName: ScreenPilot
copyright: Copyright © 2024 Your Company
directories:
output: dist
buildResources: build
files:
- "**/*"
- "!**/*.ts"
- "!*.code-workspace"
- "!LICENSE.md"
- "!package-lock.json"
- "!yarn.lock"
- "!pnpm-lock.yaml"
- "!.editorconfig"
- "!.eslintrc*"
- "!.prettierrc*"
- "!.github"
- "!.vscode"
- "!src/**/*.spec.ts"
- "!src/**/*.test.ts"
mac:
category: public.app-category.productivity
icon: assets/icon.icns
hardenedRuntime: true
gatekeeperAssess: false
entitlements: build/entitlements.mac.plist
entitlementsInherit: build/entitlements.mac.plist
type: distribution
target:
- target: dmg
arch:
- x64
- arm64
- target: zip
arch:
- x64
- arm64
dmg:
title: ${productName} ${version}
icon: assets/icon.icns
background: assets/dmg-background.png
window:
width: 600
height: 400
contents:
- x: 150
y: 200
- x: 450
y: 200
type: link
path: /Applications
afterSign: scripts/notarize.js