rait-09_obsidian-agent-client/esbuild.config.mjs

50 lines
986 B
JavaScript
Raw Normal View History

2025-09-18 09:47:14 +00:00
import esbuild from "esbuild";
import process from "process";
import { builtinModules } from "node:module";
2025-09-18 09:47:14 +00:00
2025-09-24 08:42:57 +00:00
const banner = `/*
2025-09-18 09:47:14 +00:00
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
`;
2025-09-24 08:42:57 +00:00
const prod = process.argv[2] === "production";
2025-09-18 09:47:14 +00:00
const context = await esbuild.context({
banner: {
js: banner,
},
2025-09-24 08:42:57 +00:00
entryPoints: ["src/main.ts"],
2025-09-18 09:47:14 +00:00
bundle: true,
external: [
"obsidian",
"electron",
"@codemirror/autocomplete",
"@codemirror/collab",
"@codemirror/commands",
"@codemirror/language",
"@codemirror/lint",
"@codemirror/search",
"@codemirror/state",
"@codemirror/view",
"@lezer/common",
"@lezer/highlight",
"@lezer/lr",
...builtinModules,
2025-09-24 08:42:57 +00:00
],
2025-09-18 09:47:14 +00:00
format: "cjs",
target: "es2018",
logLevel: "info",
sourcemap: prod ? false : "inline",
treeShaking: true,
outfile: "main.js",
minify: prod,
});
if (prod) {
await context.rebuild();
process.exit(0);
} else {
await context.watch();
}