calvinwyoung_obsidian-backl.../esbuild.config.mjs
Calvin Young 689c2ef010
Upgrade dependencies + tools (#6)
* Upgrade dependencies + tools

* Update README
2026-03-22 10:09:57 -07:00

51 lines
1.1 KiB
JavaScript

import { builtinModules } from 'node:module';
import process from 'node:process';
import esbuild from 'esbuild';
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 context = await esbuild.context({
banner: {
js: banner,
},
// Obsidian's plugin loader expects `main.js` to be at the plugin root.
entryPoints: ['src/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',
...builtinModules,
],
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();
}