From c60a0e02c4a80a474be21da8177d6c13d9073697 Mon Sep 17 00:00:00 2001 From: Sonophage Date: Mon, 15 Jun 2026 15:17:07 -0700 Subject: [PATCH] chore: align esbuild banner with plugin name Co-Authored-By: Claude Opus 4.8 (1M context) --- esbuild.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esbuild.config.mjs b/esbuild.config.mjs index b965e37..49139fb 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -6,7 +6,7 @@ const production = process.argv[2] === "production"; const builtins = builtinModules.flatMap((m) => [m, `node:${m}`]); const context = await esbuild.context({ - banner: { js: "/* Harker Importer — Obsidian plugin by Sonophage. */" }, + banner: { js: "/* Stardust Importer — Obsidian plugin by Sonophage. */" }, entryPoints: ["main.ts"], bundle: true, external: ["obsidian", "electron", ...builtins],