mossy1022_Smart-Connections.../esbuild.config.mjs
Shea 9a2222ca32 fix: create dist directory before writing files
- Ensure dist directory exists before writing manifest.json
- Make OBSIDIAN_PLUGINS_PATH optional to support fresh checkouts
- Prevents ENOENT errors on first build
2025-10-16 12:59:14 +13:00

95 lines
2.7 KiB
JavaScript

import esbuild from "esbuild";
import process from "process";
import builtins from "builtin-modules";
import dotenv from "dotenv";
dotenv.config();
import fs from "fs";
import path from "path";
const banner =
`/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
`;
const prod = (process.argv[2] === "production");
const package_json = JSON.parse(fs.readFileSync(path.join(process.cwd(), 'package.json')));
const manifest_json = JSON.parse(fs.readFileSync(path.join(process.cwd(), 'manifest.json')));
manifest_json.version = package_json.version;
fs.writeFileSync(path.join(process.cwd(), 'manifest.json'), JSON.stringify(manifest_json, null, 2));
// Ensure dist directory exists
if (!fs.existsSync(path.join(process.cwd(), 'dist'))) {
fs.mkdirSync(path.join(process.cwd(), 'dist'));
}
fs.writeFileSync(path.join(process.cwd(), './dist/manifest.json'), JSON.stringify(manifest_json, null, 2));
const copy_to_plugins = {
name: 'copy_to_plugins',
setup(build) {
build.onEnd(() => {
// copy manifest and styles to dist folder
fs.copyFileSync("./manifest.json", "./dist/manifest.json");
fs.copyFileSync("./styles.css", "./dist/styles.css");
// Only copy to plugins folder if OBSIDIAN_PLUGINS_PATH is set
if (process.env.OBSIDIAN_PLUGINS_PATH) {
const plugin_path = path.join(process.env.OBSIDIAN_PLUGINS_PATH, "smart-connections-visualizer");
if (!fs.existsSync(plugin_path)) {
fs.mkdirSync(plugin_path);
}
fs.copyFileSync("./dist/main.js", path.join(plugin_path, "main.js"));
fs.copyFileSync("./dist/manifest.json", path.join(plugin_path, "manifest.json"));
fs.copyFileSync("./dist/styles.css", path.join(plugin_path, "styles.css"));
// add empty .hotreload file
fs.writeFileSync(path.join(plugin_path, ".hotreload"), "");
console.log("Plugin built and copied to obsidian plugins folder");
} else {
console.log("Plugin built (OBSIDIAN_PLUGINS_PATH not set, skipping auto-copy)");
}
});
}
};
const context = await esbuild.context({
banner: {
js: banner,
},
entryPoints: ["main.ts"],
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",
...builtins
],
format: "cjs",
target: "es2018",
logLevel: "info",
sourcemap: "inline",
treeShaking: true,
outfile: "dist/main.js",
plugins: [
copy_to_plugins
]
});
if(!prod) await context.watch();
else {
await context.rebuild();
process.exit(0);
}