2022-10-21 23:22:44 +00:00
|
|
|
#!/usr/bin/node
|
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
|
|
|
* Copyright (c) 2022 Vendicated and contributors
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2022-10-16 15:15:15 +00:00
|
|
|
|
|
|
|
import esbuild from "esbuild";
|
2022-10-22 21:35:30 +00:00
|
|
|
import { zip } from "fflate";
|
2022-12-01 18:16:09 +00:00
|
|
|
import { existsSync, mkdirSync, readFileSync, rmSync, writeFileSync } from "fs";
|
2022-10-22 21:35:30 +00:00
|
|
|
import { readFile } from "fs/promises";
|
2022-12-01 18:16:09 +00:00
|
|
|
import { join, resolve } from "path";
|
2022-10-22 21:35:30 +00:00
|
|
|
|
2022-10-16 15:15:15 +00:00
|
|
|
// wtf is this assert syntax
|
|
|
|
import PackageJSON from "../../package.json" assert { type: "json" };
|
2022-10-30 01:58:11 +00:00
|
|
|
import { commonOpts, fileIncludePlugin, gitHashPlugin, gitRemotePlugin, globPlugins, watch } from "./common.mjs";
|
2022-10-16 15:15:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @type {esbuild.BuildOptions}
|
|
|
|
*/
|
|
|
|
const commonOptions = {
|
|
|
|
...commonOpts,
|
|
|
|
entryPoints: ["browser/Vencord.ts"],
|
|
|
|
globalName: "Vencord",
|
|
|
|
format: "iife",
|
|
|
|
external: ["plugins", "git-hash"],
|
|
|
|
plugins: [
|
|
|
|
globPlugins,
|
2022-10-22 02:41:33 +00:00
|
|
|
gitHashPlugin,
|
2022-10-23 21:23:52 +00:00
|
|
|
gitRemotePlugin,
|
2022-10-22 02:41:33 +00:00
|
|
|
fileIncludePlugin
|
2022-10-16 15:15:15 +00:00
|
|
|
],
|
|
|
|
target: ["esnext"],
|
|
|
|
define: {
|
2022-10-23 21:23:52 +00:00
|
|
|
IS_WEB: "true",
|
2022-10-30 01:58:11 +00:00
|
|
|
IS_STANDALONE: "true",
|
|
|
|
IS_DEV: JSON.stringify(watch)
|
2022-10-16 15:15:15 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
await Promise.all(
|
|
|
|
[
|
|
|
|
esbuild.build({
|
|
|
|
...commonOptions,
|
|
|
|
outfile: "dist/browser.js",
|
|
|
|
footer: { js: "//# sourceURL=VencordWeb" },
|
|
|
|
}),
|
|
|
|
esbuild.build({
|
|
|
|
...commonOptions,
|
|
|
|
outfile: "dist/Vencord.user.js",
|
|
|
|
banner: {
|
2022-11-21 15:32:56 +00:00
|
|
|
js: readFileSync("browser/userscript.meta.js", "utf-8").replace("%version%", `${PackageJSON.version}.${new Date().getTime()}`)
|
2022-10-16 15:15:15 +00:00
|
|
|
},
|
|
|
|
footer: {
|
|
|
|
// UserScripts get wrapped in an iife, so define Vencord prop on window that returns our local
|
|
|
|
js: "Object.defineProperty(window,'Vencord',{get:()=>Vencord});"
|
|
|
|
},
|
|
|
|
})
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
2022-12-01 18:16:09 +00:00
|
|
|
async function buildPluginZip(target, files, shouldZip) {
|
|
|
|
const entries = {
|
|
|
|
"dist/Vencord.js": readFileSync("dist/browser.js"),
|
|
|
|
...Object.fromEntries(await Promise.all(files.map(async f => [
|
|
|
|
(f.startsWith("manifest") ? "manifest.json" : f),
|
|
|
|
await readFile(join("browser", f))
|
|
|
|
]))),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (shouldZip) {
|
|
|
|
zip(entries, {}, (err, data) => {
|
|
|
|
if (err) {
|
|
|
|
console.error(err);
|
|
|
|
process.exitCode = 1;
|
|
|
|
} else {
|
|
|
|
writeFileSync("dist/" + target, data);
|
|
|
|
console.info("Extension written to dist/" + target);
|
|
|
|
}
|
|
|
|
});
|
2022-10-22 21:35:30 +00:00
|
|
|
} else {
|
2022-12-01 18:16:09 +00:00
|
|
|
if (existsSync(target))
|
|
|
|
rmSync(target, { recursive: true });
|
|
|
|
for (const entry in entries) {
|
|
|
|
const destination = "dist/" + target + "/" + entry;
|
|
|
|
const parentDirectory = resolve(destination, "..");
|
|
|
|
mkdirSync(parentDirectory, { recursive: true });
|
|
|
|
writeFileSync(destination, entries[entry]);
|
|
|
|
}
|
|
|
|
console.info("Unpacked Extension written to dist/" + target);
|
2022-10-22 21:35:30 +00:00
|
|
|
}
|
2022-12-01 18:16:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
await buildPluginZip("extension-v3.zip", ["modifyResponseHeaders.json", "content.js", "manifestv3.json"], true);
|
|
|
|
await buildPluginZip("extension-v2.zip", ["background.js", "content.js", "manifestv2.json"], true);
|
|
|
|
await buildPluginZip("extension-v2-unpacked", ["background.js", "content.js", "manifestv2.json"], false);
|
|
|
|
|