File size: 2,452 Bytes
88c4c60 | 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 64 65 66 67 68 69 70 71 | const esbuild = require("esbuild");
const fs = require("fs");
const path = require("path");
// ββ Build config βββββββββββββββββββββββββββββββββββββββββ
const BUILD_CONFIG = {
bundle: true,
minify: true,
cleanPlainFiles: true,
};
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const cliDir = path.resolve(__dirname, "..");
const appDir = path.resolve(cliDir, "..");
const cliMitmDir = path.join(cliDir, "app", "src", "mitm");
// Bundle everything β no externals. This keeps MITM runtime self-contained so
// it can be copied to DATA_DIR/runtime/ and spawned from there (escapes
// node_modules file locks that block `npm i -g 9router@latest` on Windows).
const EXTERNALS = [];
const ENTRIES = ["server.js"];
async function buildEntry(entry) {
const mitmSrc = path.join(appDir, "src", "mitm");
const output = path.join(cliMitmDir, entry);
const buildPlugin = {
name: "build-plugin",
setup(build) {
// Stub .git file scanned by esbuild
build.onResolve({ filter: /\.git/ }, args => ({ path: args.path, namespace: "git-stub" }));
build.onLoad({ filter: /.*/, namespace: "git-stub" }, () => ({ contents: "module.exports={}", loader: "js" }));
},
};
const steps = [];
if (BUILD_CONFIG.bundle) {
await esbuild.build({
entryPoints: [path.join(mitmSrc, entry)],
bundle: true,
minify: BUILD_CONFIG.minify,
platform: "node",
target: "node18",
external: EXTERNALS,
plugins: [buildPlugin],
outfile: output,
});
steps.push("bundled");
if (BUILD_CONFIG.minify) steps.push("minified");
}
console.log(`β
${steps.join(" + ")} β ${output}`);
}
async function run() {
const flags = Object.entries(BUILD_CONFIG).filter(([, v]) => v).map(([k]) => k).join(", ");
console.log(`βοΈ Config: ${flags}`);
for (const entry of ENTRIES) await buildEntry(entry);
if (BUILD_CONFIG.cleanPlainFiles) {
const keep = new Set(ENTRIES);
for (const name of fs.readdirSync(cliMitmDir)) {
if (!keep.has(name)) fs.rmSync(path.join(cliMitmDir, name), { recursive: true, force: true });
}
console.log("β
Removed plain MITM files from CLI bundle");
}
}
run().catch((e) => { console.error(e); process.exit(1); });
|