mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-08 22:23:02 -04:00
Progress
This commit is contained in:
parent
af498e7829
commit
876e622f4f
17 changed files with 289 additions and 34 deletions
82
build.mjs
82
build.mjs
|
@ -1,21 +1,80 @@
|
|||
#!/usr/bin/node
|
||||
import esbuild from "esbuild";
|
||||
import { readdirSync } from "fs";
|
||||
import { performance } from "perf_hooks";
|
||||
|
||||
/**
|
||||
* @type {esbuild.WatchMode}
|
||||
*/
|
||||
const watch = {
|
||||
onRebuild: (err) => {
|
||||
if (err) console.error("Build Error", err.message);
|
||||
else console.log("Rebuilt!");
|
||||
}
|
||||
};
|
||||
|
||||
// https://github.com/evanw/esbuild/issues/619#issuecomment-751995294
|
||||
const makeAllPackagesExternalPlugin = {
|
||||
name: 'make-all-packages-external',
|
||||
setup(build) {
|
||||
let filter = /^[^.\/]|^\.[^.\/]|^\.\.[^\/]/; // Must not start with "/" or "./" or "../"
|
||||
build.onResolve({ filter }, args => ({ path: args.path, external: true }));
|
||||
},
|
||||
};
|
||||
|
||||
const globPlugins = {
|
||||
name: "glob-plugins",
|
||||
setup: build => {
|
||||
build.onResolve({ filter: /^plugins$/ }, args => {
|
||||
return {
|
||||
namespace: "import-plugins",
|
||||
path: args.path
|
||||
};
|
||||
});
|
||||
|
||||
build.onLoad({ filter: /^plugins$/, namespace: "import-plugins" }, () => {
|
||||
const files = readdirSync("./src/plugins");
|
||||
let code = "";
|
||||
let arr = "[";
|
||||
for (let i = 0; i < files.length; i++) {
|
||||
if (files[i] === "index.ts") {
|
||||
continue;
|
||||
}
|
||||
const mod = `__pluginMod${i}`;
|
||||
code += `import ${mod} from "./${files[i].replace(".ts", "")}";\n`;
|
||||
arr += `${mod},`;
|
||||
}
|
||||
code += `export default ${arr}]`;
|
||||
return {
|
||||
contents: code,
|
||||
resolveDir: "./src/plugins"
|
||||
};
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const begin = performance.now();
|
||||
await Promise.all([
|
||||
esbuild.build({
|
||||
entryPoints: ["src/preload.ts"],
|
||||
outfile: "dist/preload.js",
|
||||
format: "cjs",
|
||||
treeShaking: true,
|
||||
bundle: true,
|
||||
platform: "node",
|
||||
target: ["esnext"]
|
||||
target: ["esnext"],
|
||||
plugins: [makeAllPackagesExternalPlugin],
|
||||
watch
|
||||
}),
|
||||
esbuild.build({
|
||||
entryPoints: ["src/patcher.ts"],
|
||||
outfile: "dist/patcher.js",
|
||||
bundle: true,
|
||||
format: "cjs",
|
||||
target: ["esnext"],
|
||||
platform: "node"
|
||||
external: ["electron"],
|
||||
platform: "node",
|
||||
plugins: [makeAllPackagesExternalPlugin],
|
||||
watch
|
||||
}),
|
||||
esbuild.build({
|
||||
entryPoints: ["src/Vencord.ts"],
|
||||
|
@ -24,8 +83,19 @@ await Promise.all([
|
|||
bundle: true,
|
||||
target: ["esnext"],
|
||||
footer: { js: "//# sourceURL=VencordRenderer" },
|
||||
globalName: "Vencord"
|
||||
globalName: "Vencord",
|
||||
external: ["plugins"],
|
||||
plugins: [
|
||||
globPlugins
|
||||
],
|
||||
watch
|
||||
})
|
||||
]);
|
||||
]).then(res => {
|
||||
const took = performance.now() - begin;
|
||||
console.log(`Built in ${took.toFixed(2)}ms`);
|
||||
}).catch(err => {
|
||||
console.error("Build failed");
|
||||
console.error(err.message);
|
||||
});
|
||||
|
||||
console.log("Built!");
|
||||
if (watch) console.log("Watching...");
|
Loading…
Add table
Add a link
Reference in a new issue