From 9e5aac0acaf8487ec1e8e92f0d12c8c2fb24b7c6 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 14 Oct 2025 00:36:42 +0200 Subject: [PATCH] fix(scripts/build): editing build rules - Now all the files will be built --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 420c713..1055102 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "scripts": { "dev": "bun --watch src/index.ts", "debug": "bun --watch src/index.ts --debug", + "build": "bun build $(find src -name '*.ts') --outdir dist --minify --target bun", "lint": "bunx eslint src --ext .ts,.js --fix || watch -n 0.5 bunx eslint src --ext .ts,.js", "lint:fix": "bunx eslint src --ext .ts,.js --fix", "type-check": "bunx tsc --noEmit",