This repository was archived by the owner on Oct 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathforge.config.js
More file actions
63 lines (63 loc) · 1.39 KB
/
forge.config.js
File metadata and controls
63 lines (63 loc) · 1.39 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
module.exports = {
packagerConfig: {
appBundleId: "org.quest.app",
icon: "./src/icon.icns",
},
makers: [
{
name: "@electron-forge/maker-squirrel",
config: {
name: "quest",
},
},
{
name: "@electron-forge/maker-zip",
platforms: ["darwin"],
},
{
name: "@electron-forge/maker-deb",
config: {
options: {
description: "Quest is a Unified Engine for Searching Things",
depends: ["libsecret-1-dev"],
homepage: "https://github.com/hverlin/Quest",
},
},
},
{
name: "@electron-forge/maker-rpm",
config: {
description: "Quest is a Unified Engine for Searching Things",
requires: ["libsecret-devel"],
homepage: "https://github.com/hverlin/Quest",
},
},
],
plugins: [
[
"@electron-forge/plugin-webpack",
{
mainConfig: "./webpack.main.config.js",
renderer: {
config: "./webpack.renderer.config.js",
entryPoints: [
{
html: "./src/index.html",
js: "./src/renderer.js",
name: "main_window",
},
],
},
},
],
],
publishers: [
{
name: "@electron-forge/publisher-github",
config: {
repository: { owner: "hverlin", name: "Quest" },
prerelease: true,
},
},
],
};