From dfe6800b31744f3c8eb6ee88eb096bde9635ae86 Mon Sep 17 00:00:00 2001 From: gapmiss <98914514+gapmiss@users.noreply.github.com> Date: Mon, 5 May 2025 06:14:49 -0500 Subject: [PATCH] fix build --- .gitignore | 2 +- esbuild.config.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 482ff1d..5889aa2 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,7 @@ node_modules # Don't include the compiled main.js file in the repo. # They should be uploaded to GitHub releases instead. -dist/* +main.js # Exclude sourcemaps *.map diff --git a/esbuild.config.mjs b/esbuild.config.mjs index fc66070..b31ea0e 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -37,7 +37,7 @@ const context = await esbuild.context({ logLevel: "info", sourcemap: false, treeShaking: true, - outfile: "dist/main.js", + outfile: "main.js", }); if (prod) {