-
Notifications
You must be signed in to change notification settings - Fork 53
chore(deps): bump the npm_and_yarn group across 2 directories with 2 updates #1797
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,6 @@ | |
| "superdoc": "0.20.0-next.13" | ||
| }, | ||
| "devDependencies": { | ||
| "vite": "^4.4.6" | ||
| "vite": "^7.3.1" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,6 +11,6 @@ | |
| }, | ||
| "devDependencies": { | ||
| "@vitejs/plugin-vue": "^4.2.3", | ||
| "vite": "^4.4.6" | ||
| "vite": "^7.3.1" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,6 @@ | |
| "superdoc": "0.20.0-next.13" | ||
| }, | ||
| "devDependencies": { | ||
| "vite": "^4.4.6" | ||
| "vite": "^7.3.1" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,6 @@ | |
| "superdoc": "0.20.0-next.13" | ||
| }, | ||
| "devDependencies": { | ||
| "vite": "^4.4.6" | ||
| "vite": "^7.3.1" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,6 +12,6 @@ | |
| }, | ||
| "devDependencies": { | ||
| "@vitejs/plugin-vue": "^4.2.3", | ||
| "vite": "^4.4.6" | ||
| "vite": "^7.3.1" | ||
|
Comment on lines
14
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This example now pins Vite to Useful? React with 👍 / 👎. |
||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This example now uses Vite
^7.3.1but still pins@vitejs/plugin-vueat^4.2.3. Elsewhere in the repo, Vite 7 examples use plugin-vue 6.x (seeexamples/collaboration/production/client/package.json), which matches Vite’s newer plugin API. Keeping 4.x here risks peer-dependency conflicts and can breakvitestartup for this example. Updating plugin-vue to the Vite 7-compatible major should avoid that.Useful? React with 👍 / 👎.