forked from pinkpixel-dev/promptzy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
108 lines (96 loc) · 3.89 KB
/
Copy pathelectron-builder.yml
File metadata and controls
108 lines (96 loc) · 3.89 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# ─────────────────────────────────────────────────────────────────────────────
# Promptzy — electron-builder configuration
# ─────────────────────────────────────────────────────────────────────────────
appId: dev.pinkpixel.promptzy
productName: Promptzy
copyright: "Copyright © 2025 Pink Pixel — https://pinkpixel.dev"
# Override package.json "main" so Electron uses the main process file,
# not the web entry point.
extraMetadata:
main: electron/main.cjs
# ── Output ────────────────────────────────────────────────────────────────────
directories:
output: dist-electron
buildResources: build-resources
# ── Files to bundle ───────────────────────────────────────────────────────────
files:
- dist/**
- electron/**
- package.json
- "!src/**"
- "!.github/**"
- "!*.md"
- "!*.txt"
- "!*.sql"
- "!wrangler.toml"
- "!tsconfig*.json"
- "!eslint.config.js"
- "!vite.config.ts"
- "!electron-builder.yml"
- "!nginx.conf"
- "!Dockerfile"
- "!docker-compose.yml"
- "!.dockerignore"
- "!bin/**"
- "!node_modules/**"
# Copy icon into extraResources so main.cjs can always find it
extraResources:
- from: public/icon.png
to: icon.png
- from: public/favicon.png
to: favicon.png
# ── App icon ──────────────────────────────────────────────────────────────────
icon: public/icon.png
# ── Windows ───────────────────────────────────────────────────────────────────
win:
target:
- target: nsis
arch:
- x64
- arm64
icon: public/icon.png
nsis:
oneClick: false
perMachine: false
allowToChangeInstallationDirectory: true
installerIcon: public/icon.png
uninstallerIcon: public/icon.png
createDesktopShortcut: true
createStartMenuShortcut: true
shortcutName: Promptzy
artifactName: "${productName}-Setup-${version}-${arch}.${ext}"
# ── macOS ─────────────────────────────────────────────────────────────────────
mac:
target:
- target: dmg
arch:
- x64
- arm64
icon: public/icon.png
category: public.app-category.productivity
darkModeSupport: true
dmg:
title: "Promptzy ${version}"
artifactName: "${productName}-${version}-${arch}.${ext}"
# ── Linux ─────────────────────────────────────────────────────────────────────
linux:
target:
- target: AppImage
arch:
- x64
- target: deb
arch:
- x64
icon: public/icon.png
category: Utility
description: "AI Prompt Manager — organise and manage your AI prompts"
artifactName: "${productName}-${version}-${arch}.${ext}"
desktop:
Name: Promptzy
Comment: AI Prompt Manager
Categories: Utility;Office;
# ── Auto-updates (uncomment to enable GitHub releases) ───────────────────────
# publish:
# provider: github
# owner: pinkpixel-dev
# repo: promptzy