(build): Move to build file to avoid the terminal being a truckload of sh-

This commit is contained in:
2026-06-13 22:01:30 +00:00
parent 6f10dedc12
commit d17821bb1b
3 changed files with 165 additions and 133 deletions
+10
View File
@@ -0,0 +1,10 @@
const esbuild = require('esbuild');
esbuild.buildSync({
entryPoints: ["src/**/*.ts"],
outdir: 'dist',
platform: 'node',
format: 'cjs',
minify: true
});