Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/advanced/loading-from-json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"superdoc": "0.20.0-next.13"
},
"devDependencies": {
"vite": "^4.4.6"
"vite": "^7.3.1"
}
}
2 changes: 1 addition & 1 deletion examples/collaboration/from-scratch/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"vite": "^4.4.6"
"vite": "^7.3.1"
Comment on lines 13 to +14

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Align @vitejs/plugin-vue major with Vite 7

This client example also upgrades vite to ^7.3.1 without updating @vitejs/plugin-vue from ^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-vue to the Vite 7-compatible major (or reverting the Vite bump) would keep the example consistent and runnable.

Useful? React with 👍 / 👎.

}
}
2 changes: 1 addition & 1 deletion examples/customization/toolbar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"superdoc": "0.20.0-next.13"
},
"devDependencies": {
"vite": "^4.4.6"
"vite": "^7.3.1"
}
}
2 changes: 1 addition & 1 deletion examples/getting-started/vanilla/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"superdoc": "0.20.0-next.13"
},
"devDependencies": {
"vite": "^4.4.6"
"vite": "^7.3.1"
}
}
2 changes: 1 addition & 1 deletion examples/getting-started/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Align @vitejs/plugin-vue major with Vite 7

This example now pins vite to ^7.3.1 while leaving @vitejs/plugin-vue at ^4.2.3 in the same devDependencies block. In this repo, other Vite 7 examples already pair Vite 7 with @vitejs/plugin-vue ^6.0.2 (see examples/collaboration/production/client/package.json), which strongly suggests the plugin major is expected to match the Vite major. With the current mismatch, running npm install + npm run dev in this example is likely to hit peer-dependency errors or runtime plugin API mismatches because the Vue plugin is multiple majors behind. Consider bumping @vitejs/plugin-vue to the Vite 7-compatible major (or keeping Vite at 4) to keep the example runnable.

Useful? React with 👍 / 👎.

}
}
2 changes: 1 addition & 1 deletion examples/integrations/nextjs-ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"superdoc": "0.20.0-next.13",
"next": "15.3.3",
"next": "15.4.10",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/integrations/word-addin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"source-map-loader": "^5.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "5.1.0"
"webpack-dev-server": "5.2.1"
},
"prettier": "office-addin-prettier-config",
"browserslist": [
Expand Down