From 3618d1891523e9144e0385f016fa8f069e957bda Mon Sep 17 00:00:00 2001 From: abearxiong Date: Sun, 18 Jan 2026 20:57:22 +0800 Subject: [PATCH] fix: remove unused external dependency '@kevisual/router' --- bun.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bun.config.mjs b/bun.config.mjs index 8bbab0b..071d6b4 100644 --- a/bun.config.mjs +++ b/bun.config.mjs @@ -4,7 +4,7 @@ import { execSync } from 'node:child_process'; const entry = 'src/index.ts'; const naming = 'app'; -const external = ['sequelize', 'pg', 'sqlite3', 'ioredis', 'pm2', 'bun', '@kevisual/router']; +const external = ['sequelize', 'pg', 'sqlite3', 'ioredis', 'pm2', 'bun']; /** * @type {import('bun').BuildConfig} */