From 098eabe5bf58ceded334c84aec21fad22bf01301 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Thu, 7 May 2026 19:32:04 +0700 Subject: [PATCH] feat: add 'api' directory to .gitignore and update build script in package.json --- .gitignore | 1 + package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index ecb0735..ecb6648 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ node_modules # output out dist +api *.tgz # code coverage diff --git a/package.json b/package.json index 3169144..9e62a1c 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "type": "module", "private": true, "scripts": { + "build": "bun build src/index.ts --target=bun --outdir=api", "start": "bun run src/index.ts", "dev": "bun --hot run src/index.ts", "test": "bun test",