likedsongstoplaylist/build.mjs
2025-04-25 05:52:08 -04:00

10 lines
210 B
JavaScript

import { build } from "esbuild";
await build({
entryPoints: ["src/index.ts"],
bundle: true,
platform: "node",
outfile: "dist/index.js",
minify: true,
treeShaking: true // shake it off shake it offff
});