punkyard_obsidian-lindar/esbuild.config.mjs
nmn 1d997c0a3d feat: Phase 1+2 — scaffold and base yearly calendar view
- Project scaffold: manifest, package.json, tsconfig, esbuild config
- Settings model with eventsFolder, defaultColor, motto
- Shared types (LindarEvent, LindarSettings)
- Date utilities (getDaysInMonth, getFirstDayOfWeek, week numbers, etc.)
- Yearly horizontal calendar grid (12 month rows, weekday headers)
- Sticky month labels, today highlight, weekend tinting
- Week number display, horizontal scrolling, 96vh layout
- Year navigation (prev/next buttons + year picker dropdown)
- Customizable motto display
- Light/dark theme support via Obsidian CSS variables
2026-04-21 13:26:49 +02:00

50 lines
1 KiB
JavaScript

import esbuild from "esbuild";
import process from "process";
import { builtinModules } from "node:module";
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,
},
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();
}