Skip to content

Commit 41c066e

Browse files
committed
chore: update build dependencies to vite 6
1 parent 205801c commit 41c066e

File tree

9 files changed

+889
-715
lines changed

9 files changed

+889
-715
lines changed

npm/react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"devDependencies": {
1919
"@cypress/mount-utils": "0.0.0-development",
2020
"@types/semver": "7.5.8",
21-
"@vitejs/plugin-react": "4.3.3",
21+
"@vitejs/plugin-react": "4.6.0",
2222
"axios": "1.7.7",
2323
"cypress": "0.0.0-development",
2424
"prop-types": "15.8.1",
@@ -28,8 +28,8 @@
2828
"react-router-dom": "6.28.0",
2929
"semver": "^7.7.1",
3030
"typescript": "~5.4.5",
31-
"vite": "5.4.18",
32-
"vite-plugin-require-transform": "1.0.12"
31+
"vite": "6.3.5",
32+
"vite-plugin-require-transform": "1.0.21"
3333
},
3434
"peerDependencies": {
3535
"@types/react": "^18 || ^19",

npm/vite-plugin-cypress-esm/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"devDependencies": {
2020
"@tanstack/react-query": "4.36.1",
2121
"@types/picomatch": "2.3.0",
22-
"@vitejs/plugin-react": "4.3.3",
22+
"@vitejs/plugin-react": "4.6.0",
2323
"react": "18.3.1",
2424
"react-dom": "18.3.1",
2525
"react-router": "6.28.0",
2626
"react-router-dom": "6.28.0",
27-
"vite": "5.4.18"
27+
"vite": "6.3.5"
2828
},
2929
"files": [
3030
"dist",

npm/vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"devDependencies": {
1818
"@cypress/mount-utils": "0.0.0-development",
19-
"@vitejs/plugin-vue": "5.0.4",
19+
"@vitejs/plugin-vue": "6.0.0",
2020
"@vue/compiler-sfc": "3.2.47",
2121
"@vue/test-utils": "2.4.6",
2222
"axios": "0.21.2",
@@ -25,7 +25,7 @@
2525
"globby": "^11.0.1",
2626
"tailwindcss": "1.1.4",
2727
"typescript": "~5.4.5",
28-
"vite": "5.4.18",
28+
"vite": "6.3.5",
2929
"vue": "3.2.47",
3030
"vue-i18n": "9.13.1",
3131
"vue-router": "^4.0.0",

packages/app/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
"@tooling/system-tests": "0.0.0-development",
5050
"@urql/core": "2.4.4",
5151
"@urql/vue": "0.6.2",
52-
"@vitejs/plugin-legacy": "5.4.0",
53-
"@vitejs/plugin-vue": "5.0.4",
54-
"@vitejs/plugin-vue-jsx": "3.1.0",
52+
"@vitejs/plugin-legacy": "7.0.0",
53+
"@vitejs/plugin-vue": "6.0.0",
54+
"@vitejs/plugin-vue-jsx": "5.0.1",
5555
"@vueuse/core": "7.7.1",
5656
"ansi-to-html": "0.7.2",
5757
"bluebird": "3.5.3",
@@ -84,7 +84,7 @@
8484
"tailwindcss": "^3.3.1",
8585
"unplugin-icons": "^22.1.0",
8686
"unplugin-vue-components": "^0.27.0",
87-
"vite": "^5.4.18",
87+
"vite": "^6.3.5",
8888
"vite-plugin-pages": "0.32.1",
8989
"vite-plugin-vue-layouts": "0.11.0",
9090
"vite-svg-loader": "5.1.0",

packages/data-context/src/util/config-file-updater.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function insertValueInJSString (fileContents: string, obj: Record<s
3434
&& nodePath.node.callee.type === 'Identifier') {
3535
const functionName = nodePath.node.callee.name
3636

37-
if (isDefineConfigFunction(ast, functionName)) {
37+
if (isDefineConfigFunction(ast as File, functionName)) {
3838
return handleExport(nodePath.get('arguments', 0))
3939
}
4040
}

packages/driver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"underscore.string": "3.3.6",
9393
"url-parse": "1.5.10",
9494
"vanilla-text-mask": "5.1.1",
95-
"vite": "^5.4.18",
95+
"vite": "^6.3.5",
9696
"vitest": "^2.1.8",
9797
"webpack": "^5.88.2",
9898
"zone.js": "0.15.0"

packages/frontend-shared/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
"@urql/exchange-execute": "1.1.0",
5656
"@urql/exchange-graphcache": "4.3.6",
5757
"@urql/vue": "0.6.2",
58-
"@vitejs/plugin-vue": "5.0.4",
59-
"@vitejs/plugin-vue-jsx": "3.1.0",
58+
"@vitejs/plugin-vue": "6.0.0",
59+
"@vitejs/plugin-vue-jsx": "5.0.1",
6060
"@vue/compiler-core": "3.2.47",
6161
"@vue/compiler-dom": "3.2.47",
6262
"@vue/compiler-sfc": "3.2.47",
@@ -98,7 +98,7 @@
9898
"type-fest": "^2.3.4",
9999
"unplugin-icons": "0.19.0",
100100
"unplugin-vue-components": "^0.27.0",
101-
"vite": "^5.4.18",
101+
"vite": "6.3.5",
102102
"vite-svg-loader": "5.1.0",
103103
"vue": "3.2.47",
104104
"vue-eslint-parser": "7.11.0",

packages/launchpad/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
"@urql/core": "2.4.4",
4444
"@urql/devtools": "2.0.3",
4545
"@urql/vue": "0.6.2",
46-
"@vitejs/plugin-vue": "5.0.4",
47-
"@vitejs/plugin-vue-jsx": "3.1.0",
46+
"@vitejs/plugin-vue": "6.0.0",
47+
"@vitejs/plugin-vue-jsx": "5.0.1",
4848
"@vue/compiler-core": "3.2.47",
4949
"@vue/compiler-dom": "3.2.47",
5050
"@vue/compiler-sfc": "3.2.47",
@@ -70,7 +70,7 @@
7070
"sinon": "13.0.2",
7171
"type-fest": "^2.3.4",
7272
"unplugin-vue-components": "0.27.0",
73-
"vite": "^5.4.18",
73+
"vite": "6.3.5",
7474
"vite-plugin-optimize-persist": "0.1.2",
7575
"vite-plugin-package-config": "0.1.1",
7676
"vite-svg-loader": "5.1.0",

yarn.lock

Lines changed: 870 additions & 696 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)