Skip to content

Commit 73ecc5f

Browse files
committed
removed a plugin
1 parent d5d4fdc commit 73ecc5f

6 files changed

Lines changed: 1 addition & 752 deletions

File tree

packages/core/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"@repo/eslint-config": "workspace:*",
2929
"@repo/typescript-config": "workspace:*",
3030
"vite": "catalog:",
31-
"vite-plugin-dts": "catalog:",
3231
"typescript": "catalog:"
3332
}
3433
}

packages/core/vite.config.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
import { defineConfig } from 'vite'
2-
import dts from 'vite-plugin-dts'
32
import { resolve } from 'path'
43

54
export default defineConfig({
6-
plugins: [
7-
dts({
8-
include: ['src'],
9-
rollupTypes: true,
10-
}),
11-
],
125
build: {
136
lib: {
147
entry: resolve(__dirname, 'src/index.ts'),

packages/ui/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
"@repo/eslint-config": "workspace:*",
6060
"@repo/typescript-config": "workspace:*",
6161
"vite": "catalog:",
62-
"vite-plugin-dts": "catalog:",
6362
"@vitejs/plugin-vue": "catalog:",
6463
"typescript": "catalog:"
6564
}

packages/ui/vite.config.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
import { defineConfig } from 'vite'
22
import vue from '@vitejs/plugin-vue'
3-
import dts from 'vite-plugin-dts'
43
import { resolve } from 'path'
54

65
export default defineConfig({
7-
plugins: [
8-
vue(),
9-
dts({
10-
include: ['src'],
11-
bundleTypes: true,
12-
}),
13-
],
6+
plugins: [vue()],
147
build: {
158
lib: {
169
entry: resolve(__dirname, 'src/index.ts'),

0 commit comments

Comments
 (0)