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:
parent
81f7e0c2cc
commit
8497ddeed4
3 changed files with 2 additions and 5 deletions
1
bun.lock
1
bun.lock
|
|
@ -55,7 +55,6 @@
|
|||
"vite-plugin-dts": "^5.0.2",
|
||||
},
|
||||
"peerDependencies": {
|
||||
"reka-ui": "^2.10.0",
|
||||
"vue": "^3.5.0",
|
||||
},
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -20,11 +20,10 @@ export default defineConfig({
|
|||
fileName: () => 'index.js',
|
||||
},
|
||||
rollupOptions: {
|
||||
external: ['vue', 'reka-ui'],
|
||||
external: ['vue'],
|
||||
output: {
|
||||
globals: {
|
||||
vue: 'Vue',
|
||||
'reka-ui': 'RekaUI',
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue