From a45a4a66d4186044e4179ae8a1d4302a4cfe4bee Mon Sep 17 00:00:00 2001 From: skirtle <65301168+skirtles-code@users.noreply.github.com> Date: Sat, 14 Feb 2026 11:27:05 +0000 Subject: [PATCH] build: rename `entryPoints` to `entry` --- packages/core/tsdown.config.ts | 4 +--- packages/devtools-kit/tsdown.config.ts | 4 +--- packages/devtools/tsdown.config.ts | 2 +- packages/shared/tsdown.config.ts | 4 +--- 4 files changed, 4 insertions(+), 10 deletions(-) diff --git a/packages/core/tsdown.config.ts b/packages/core/tsdown.config.ts index 45a83061..bad59037 100644 --- a/packages/core/tsdown.config.ts +++ b/packages/core/tsdown.config.ts @@ -1,9 +1,7 @@ import { defineConfig } from 'tsdown' export default defineConfig({ - entryPoints: [ - 'src/index.ts', - ], + entry: 'src/index.ts', external: [ 'vue', ], diff --git a/packages/devtools-kit/tsdown.config.ts b/packages/devtools-kit/tsdown.config.ts index c6a63156..2c7101f7 100644 --- a/packages/devtools-kit/tsdown.config.ts +++ b/packages/devtools-kit/tsdown.config.ts @@ -1,9 +1,7 @@ import { defineConfig } from 'tsdown' export default defineConfig({ - entryPoints: [ - 'src/index.ts', - ], + entry: 'src/index.ts', clean: true, format: ['esm', 'cjs'], dts: true, diff --git a/packages/devtools/tsdown.config.ts b/packages/devtools/tsdown.config.ts index 93244a00..71ed744e 100644 --- a/packages/devtools/tsdown.config.ts +++ b/packages/devtools/tsdown.config.ts @@ -1,7 +1,7 @@ import { defineConfig } from 'tsdown' export default defineConfig({ - entryPoints: [ + entry: [ 'src/index.ts', 'src/hook.ts', ], diff --git a/packages/shared/tsdown.config.ts b/packages/shared/tsdown.config.ts index c6a63156..2c7101f7 100644 --- a/packages/shared/tsdown.config.ts +++ b/packages/shared/tsdown.config.ts @@ -1,9 +1,7 @@ import { defineConfig } from 'tsdown' export default defineConfig({ - entryPoints: [ - 'src/index.ts', - ], + entry: 'src/index.ts', clean: true, format: ['esm', 'cjs'], dts: true,