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.
This commit is contained in:
Matthew McPeak 2026-07-13 18:18:55 -04:00
parent 81f7e0c2cc
commit 8497ddeed4
3 changed files with 2 additions and 5 deletions

View file

@ -55,7 +55,6 @@
"vite-plugin-dts": "^5.0.2", "vite-plugin-dts": "^5.0.2",
}, },
"peerDependencies": { "peerDependencies": {
"reka-ui": "^2.10.0",
"vue": "^3.5.0", "vue": "^3.5.0",
}, },
}, },

View file

@ -32,8 +32,7 @@
"test:unit:watch": "vitest" "test:unit:watch": "vitest"
}, },
"peerDependencies": { "peerDependencies": {
"vue": "^3.5.0", "vue": "^3.5.0"
"reka-ui": "^2.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitest/coverage-v8": "^2.0.0", "@vitest/coverage-v8": "^2.0.0",

View file

@ -20,11 +20,10 @@ export default defineConfig({
fileName: () => 'index.js', fileName: () => 'index.js',
}, },
rollupOptions: { rollupOptions: {
external: ['vue', 'reka-ui'], external: ['vue'],
output: { output: {
globals: { globals: {
vue: 'Vue', vue: 'Vue',
'reka-ui': 'RekaUI',
}, },
}, },
}, },