mirror of
https://github.com/yeban8090/note-to-red.git
synced 2026-07-22 05:42:34 +00:00
65 lines
No EOL
1.5 KiB
JavaScript
65 lines
No EOL
1.5 KiB
JavaScript
import esbuild from "esbuild";
|
|
import process from "process";
|
|
import builtins from "builtin-modules";
|
|
|
|
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 config = {
|
|
banner: {
|
|
js: banner,
|
|
},
|
|
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',
|
|
...builtins],
|
|
format: 'cjs',
|
|
target: 'es2018',
|
|
logLevel: "info",
|
|
sourcemap: prod ? false : 'inline',
|
|
treeShaking: true,
|
|
outfile: 'main.js',
|
|
};
|
|
|
|
// 简化 CSS 配置
|
|
const cssConfig = {
|
|
entryPoints: ['src/styles/index.css'],
|
|
bundle: true,
|
|
outfile: 'styles.css', // 直接输出到项目根目录
|
|
allowOverwrite: true
|
|
};
|
|
|
|
if (prod) {
|
|
await Promise.all([
|
|
esbuild.build(config),
|
|
esbuild.build(cssConfig)
|
|
]).catch(() => process.exit(1));
|
|
} else {
|
|
const [context, cssContext] = await Promise.all([
|
|
esbuild.context(config),
|
|
esbuild.context(cssConfig)
|
|
]);
|
|
await Promise.all([
|
|
context.watch(),
|
|
cssContext.watch()
|
|
]);
|
|
console.log('⚡ esbuild is watching for changes...');
|
|
} |