Skip to content

Commit cecc47d

Browse files
committed
fix(deps): bundle vite-plugin-vue - two vite versions being installed
1 parent 4217216 commit cecc47d

File tree

3 files changed

+13
-55
lines changed

3 files changed

+13
-55
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@
9292
"dependencies": {
9393
"@docsearch/css": "^3.5.2",
9494
"@docsearch/js": "^3.5.2",
95-
"@vitejs/plugin-vue": "^4.3.3",
9695
"@vue/devtools-api": "^6.5.0",
9796
"@vueuse/core": "^10.4.0",
9897
"@vueuse/integrations": "^10.4.0",
@@ -133,6 +132,7 @@
133132
"@types/node": "^20.5.6",
134133
"@types/postcss-prefix-selector": "^1.16.0",
135134
"@types/prompts": "^2.4.4",
135+
"@vitejs/plugin-vue": "^4.3.3",
136136
"@vue/shared": "^3.3.4",
137137
"chokidar": "^3.5.3",
138138
"compression": "^1.7.4",
@@ -193,7 +193,8 @@
193193
},
194194
"pnpm": {
195195
"overrides": {
196-
"ora>string-width": "^5"
196+
"ora>string-width": "^5",
197+
"vite": "5.0.0-beta.0"
197198
}
198199
}
199200
}

pnpm-lock.yaml

Lines changed: 8 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rollup.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ const external = [
2626
m.includes('punycode') ? [] : [m, `node:${m}`]
2727
),
2828
r('types/shared.d.ts'),
29-
'postcss'
29+
'postcss',
30+
'source-map-js'
3031
]
3132

3233
const plugins = [

0 commit comments

Comments
 (0)