We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15f70f6 commit 936059bCopy full SHA for 936059b
packages/core/package.json
@@ -33,7 +33,8 @@
33
"dev": "tsdown -w",
34
"bump": "npm run build && bumpp --tag v --sign"
35
},
36
- "dependencies": {
+ "devDependencies": {
37
+ "unplugin-vue": "catalog:prod",
38
"@vue-nextui/alert": "workspace: *",
39
"@vue-nextui/button": "workspace: *"
40
}
packages/core/tsdown.config.ts
@@ -0,0 +1,11 @@
1
+import { defineConfig } from "tsdown";
2
+import vue from "unplugin-vue/rolldown";
3
+
4
+export default defineConfig({
5
+ entry: "src/index.ts",
6
+ plugins: [vue()],
7
+ external: ["vue"],
8
+ dts: {
9
+ vue: true,
10
+ },
11
+});
0 commit comments