diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..a494398 --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +CLIENT_ID= +CLIENT_SECRET= \ No newline at end of file diff --git a/build.mjs b/build.mjs new file mode 100644 index 0000000..bb14a55 --- /dev/null +++ b/build.mjs @@ -0,0 +1,10 @@ +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 +});