From 24a563a1a58ba637ca57e541ff11b92b1f506794 Mon Sep 17 00:00:00 2001 From: Migan178 Date: Mon, 30 Jan 2023 17:58:17 +0900 Subject: [PATCH] fix: tsup config --- tsup.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsup.config.ts b/tsup.config.ts index d85148b..d7a93f3 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -3,7 +3,7 @@ import { defineConfig } from 'tsup' export default defineConfig({ clean: true, format: ['cjs'], - entry: ['src/index.ts'], + entry: ['src/index.ts', 'src/Commands/*.ts'], minify: true, splitting: true, })