From 8497ddeed485540c069264a5689c1d6a06593d9f Mon Sep 17 00:00:00 2001 From: Matthew L McPeak Date: Mon, 13 Jul 2026 18:18:55 -0400 Subject: [PATCH] chore: drop the reka-ui dependency Every component that used to depend on it has been rewritten on small local primitives (previous commits). reka-ui is no longer a peerDependency of @nychthemeron/library, so consumers no longer need to install it. --- bun.lock | 1 - packages/library/package.json | 3 +-- packages/library/vite.config.ts | 3 +-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/bun.lock b/bun.lock index ec3cf47..4f2d701 100644 --- a/bun.lock +++ b/bun.lock @@ -55,7 +55,6 @@ "vite-plugin-dts": "^5.0.2", }, "peerDependencies": { - "reka-ui": "^2.10.0", "vue": "^3.5.0", }, }, diff --git a/packages/library/package.json b/packages/library/package.json index a081948..82570d6 100644 --- a/packages/library/package.json +++ b/packages/library/package.json @@ -32,8 +32,7 @@ "test:unit:watch": "vitest" }, "peerDependencies": { - "vue": "^3.5.0", - "reka-ui": "^2.10.0" + "vue": "^3.5.0" }, "devDependencies": { "@vitest/coverage-v8": "^2.0.0", diff --git a/packages/library/vite.config.ts b/packages/library/vite.config.ts index 34c6aae..48c9744 100644 --- a/packages/library/vite.config.ts +++ b/packages/library/vite.config.ts @@ -20,11 +20,10 @@ export default defineConfig({ fileName: () => 'index.js', }, rollupOptions: { - external: ['vue', 'reka-ui'], + external: ['vue'], output: { globals: { vue: 'Vue', - 'reka-ui': 'RekaUI', }, }, },