-
Notifications
You must be signed in to change notification settings - Fork 51
chore(deps): bump the npm_and_yarn group across 2 directories with 2 updates #1771
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
13
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 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 client example also upgrades
viteto^7.3.1without updating@vitejs/plugin-vuefrom^4.2.3. Elsewhere in the repo, Vite 7 examples use@vitejs/plugin-vue^6.0.2(e.g.,examples/collaboration/production/client/package.json), indicating the plugin major tracks the Vite major. With the current mismatch, developers running this example (npm install+npm run dev) are likely to see peer-dependency issues or runtime failures from an incompatible plugin API. Updating@vitejs/plugin-vueto the Vite 7-compatible major (or reverting the Vite bump) would keep the example consistent and runnable.Useful? React with 👍 / 👎.