mirror of
https://github.com/wavetermdev/backup.git
synced 2026-04-22 15:26:58 -07:00
115 lines
3.1 KiB
JavaScript
115 lines
3.1 KiB
JavaScript
const pkg = require("./package.json");
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
/**
|
|
* @type {import('electron-builder').Configuration}
|
|
* @see https://www.electron.build/configuration/configuration
|
|
*/
|
|
const config = {
|
|
appId: pkg.build.appId,
|
|
productName: pkg.productName,
|
|
artifactName: "${productName}-${platform}-${arch}-${version}.${ext}",
|
|
npmRebuild: false,
|
|
nodeGypRebuild: false,
|
|
electronCompile: false,
|
|
files: [
|
|
{
|
|
from: "./dist",
|
|
to: "./dist",
|
|
filter: ["**/*"],
|
|
},
|
|
{
|
|
from: "./public",
|
|
to: "./public",
|
|
filter: ["**/*"],
|
|
},
|
|
{
|
|
from: "./bin",
|
|
to: "./bin",
|
|
filter: ["**/*"],
|
|
},
|
|
{
|
|
from: ".",
|
|
to: ".",
|
|
filter: ["package.json"],
|
|
},
|
|
"!**/node_modules/**${/*}", // Ignore node_modules by default
|
|
{
|
|
from: "./node_modules",
|
|
to: "./node_modules",
|
|
filter: ["monaco-editor/min/**/*"], // This is the only module we want to include
|
|
},
|
|
],
|
|
directories: {
|
|
output: "make",
|
|
},
|
|
asarUnpack: ["bin/**/*"],
|
|
mac: {
|
|
target: [
|
|
{
|
|
target: "zip",
|
|
arch: "universal",
|
|
},
|
|
{
|
|
target: "dmg",
|
|
arch: "universal",
|
|
},
|
|
],
|
|
appId: "dev.commandline.waveterm",
|
|
icon: "public/waveterm.icns",
|
|
category: "public.app-category.developer-tools",
|
|
minimumSystemVersion: "10.15.0",
|
|
notarize: process.env.APPLE_TEAM_ID
|
|
? {
|
|
teamId: process.env.APPLE_TEAM_ID,
|
|
}
|
|
: false,
|
|
binaries: fs
|
|
.readdirSync("bin", { recursive: true, withFileTypes: true })
|
|
.filter((f) => f.isFile())
|
|
.map((f) => path.resolve(f.path, f.name)),
|
|
},
|
|
linux: {
|
|
appId: "dev.commandline.waveterm",
|
|
executableName: pkg.productName,
|
|
category: "TerminalEmulator",
|
|
icon: "public/waveterm.icns",
|
|
target: ["zip", "deb", "rpm", "AppImage", "pacman", "snap"],
|
|
synopsis: pkg.description,
|
|
description: null,
|
|
desktop: {
|
|
Name: pkg.productName,
|
|
Comment: pkg.description,
|
|
Keywords: "developer;terminal;emulator;",
|
|
category: "Development;Utility;",
|
|
},
|
|
},
|
|
appImage: {
|
|
license: "LICENSE",
|
|
},
|
|
snap: {
|
|
base: "core20",
|
|
grade: "stable",
|
|
confinement: "classic",
|
|
summary: pkg.productName,
|
|
title: pkg.productName,
|
|
description: null,
|
|
synopsis: pkg.description,
|
|
allowNativeWayland: true,
|
|
desktop: {
|
|
Name: pkg.productName,
|
|
Comment: pkg.description,
|
|
Keywords: "developer;terminal;emulator;",
|
|
category: "Development;Utility;",
|
|
exec: pkg.productName,
|
|
},
|
|
},
|
|
publish: {
|
|
provider: "generic",
|
|
url: "https://dl.waveterm.dev/releases",
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|