Skip to content

Commit

Permalink
Fix peer deps issue in svelte and vue plugins (withastro#3333)
Browse files Browse the repository at this point in the history
* fix peer deps issue

* add changeset

* rebuild lockfile
  • Loading branch information
FredKSchott committed May 11, 2022
1 parent ccea6a0 commit ce6d798
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .changeset/violet-bees-camp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@astrojs/svelte': patch
'@astrojs/vue': patch
---

Fix a vite peer dependency bug
3 changes: 2 additions & 1 deletion packages/integrations/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.41",
"postcss-load-config": "^3.1.4",
"svelte-preprocess": "^4.10.6"
"svelte-preprocess": "^4.10.6",
"vite": "^2.9.5"
},
"devDependencies": {
"astro": "workspace:*",
Expand Down
3 changes: 2 additions & 1 deletion packages/integrations/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {
"@vitejs/plugin-vue": "^2.3.1"
"@vitejs/plugin-vue": "^2.3.1",
"vite": "^2.9.5"
},
"devDependencies": {
"astro": "workspace:*",
Expand Down
40 changes: 36 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ce6d798

Please sign in to comment.