Skip to content

Commit 915e534

Browse files
dependabot[bot]Ruslan Farkhutdinov
andauthored
Bump vite from 5.4.21 to 6.4.2 (#33178)
Co-authored-by: Ruslan Farkhutdinov <ruslan.farkhutdinov@devexpress.com>
1 parent 109d0f1 commit 915e534

3 files changed

Lines changed: 31 additions & 252 deletions

File tree

e2e/bundlers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"parcel": "2.16.4",
1616
"rimraf": "3.0.2",
1717
"rollup": "4.59.0",
18-
"vite": "5.4.21",
18+
"vite": "6.4.2",
1919
"webpack": "5.105.4",
2020
"webpack-cli": "4.10.0",
2121
"devextreme": "workspace:*",

e2e/bundlers/vite.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import rollupConfig from './rollup.config.mjs';
22

33
delete rollupConfig.output.file;
4+
// Vite 6 applies its own @rollup/plugin-commonjs internally; remove the user-provided
5+
// instance to avoid the "default is not exported" conflict with CJS modules (e.g. jszip).
6+
rollupConfig.plugins = rollupConfig.plugins.filter(p => p.name !== 'commonjs');
47

58
module.exports = {
69
build: {

0 commit comments

Comments
 (0)