project-client/scripts/build/build.mts

90 lines
2.5 KiB
TypeScript
Raw Normal View History

/*
* SPDX-License-Identifier: GPL-3.0
2023-07-13 17:03:13 +00:00
* Vesktop, a desktop app aiming to give you a snappier Discord Experience
* Copyright (c) 2023 Vendicated and Vencord contributors
*/
2023-03-29 23:02:30 +00:00
import { BuildContext, BuildOptions, context } from "esbuild";
import { copyFile } from "fs/promises";
2023-03-29 23:02:30 +00:00
2023-04-19 20:47:47 +00:00
import vencordDep from "./vencordDep.mjs";
const isDev = process.argv.includes("--dev");
const CommonOpts: BuildOptions = {
minify: !isDev,
2023-03-29 23:02:30 +00:00
bundle: true,
sourcemap: "linked",
logLevel: "info"
};
const NodeCommonOpts: BuildOptions = {
...CommonOpts,
format: "cjs",
platform: "node",
external: ["electron"],
target: ["esnext"],
define: {
IS_DEV: JSON.stringify(isDev)
}
};
2023-03-29 23:02:30 +00:00
const contexts = [] as BuildContext[];
async function createContext(options: BuildOptions) {
contexts.push(await context(options));
}
await Promise.all([
process.platform === "linux" &&
copyFile(
"./node_modules/@vencord/venmic/prebuilds/venmic-addon-linux-x64/node-napi-v7.node",
"./static/dist/venmic.node"
).catch(() => console.warn("Failed to copy venmic. Building without venmic support")),
2023-03-29 23:02:30 +00:00
createContext({
...NodeCommonOpts,
entryPoints: ["src/main/index.ts"],
2023-04-19 20:47:47 +00:00
outfile: "dist/js/main.js",
footer: { js: "//# sourceURL=VCDMain" }
2023-03-29 23:02:30 +00:00
}),
createContext({
...NodeCommonOpts,
entryPoints: ["src/preload/index.ts"],
2023-04-19 20:47:47 +00:00
outfile: "dist/js/preload.js",
footer: { js: "//# sourceURL=VCDPreload" }
}),
2023-04-10 20:53:44 +00:00
createContext({
...NodeCommonOpts,
entryPoints: ["src/updater/preload.ts"],
2023-04-19 20:47:47 +00:00
outfile: "dist/js/updaterPreload.js",
footer: { js: "//# sourceURL=VCDUpdaterPreload" }
2023-04-10 20:53:44 +00:00
}),
createContext({
...CommonOpts,
2023-07-13 17:03:13 +00:00
globalName: "Vesktop",
entryPoints: ["src/renderer/index.ts"],
outfile: "dist/js/renderer.js",
format: "iife",
2023-04-08 22:49:47 +00:00
inject: ["./scripts/build/injectReact.mjs"],
jsxFactory: "VencordCreateElement",
jsxFragment: "VencordFragment",
// Work around https://github.com/evanw/esbuild/issues/2460
2023-04-19 20:47:47 +00:00
tsconfig: "./scripts/build/tsconfig.esbuild.json",
external: ["@vencord/types/*"],
plugins: [vencordDep],
2023-10-21 20:25:16 +00:00
footer: { js: "//# sourceURL=VCDRenderer" }
2023-03-29 23:02:30 +00:00
})
]);
const watch = process.argv.includes("--watch");
if (watch) {
await Promise.all(contexts.map(ctx => ctx.watch()));
} else {
await Promise.all(
contexts.map(async ctx => {
await ctx.rebuild();
await ctx.dispose();
})
);
2023-03-29 23:02:30 +00:00
}