Skip to content

Commit 9784422

Browse files
authored
Vite 6 transition (#25)
# Description Migration to: Vite 6 Vitest v3 ## Type of change Please mark relevant options with an `x` in the brackets. - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update - [ ] Algorithm update - updates algorithm documentation/questions/answers etc. - [ ] Other (please describe): # How Has This Been Tested? Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration - [ ] Integration tests - [ ] Unit tests - [ ] Manual tests - [ ] No tests required # Reviewer checklist Mark everything that needs to be checked before merging the PR. - [ ] Check if the UI is working as expected and is satisfactory - [ ] Check if the code is well documented - [ ] Check if the behavior is what is expected - [ ] Check if the code is well tested - [ ] Check if the code is readable and well formatted - [ ] Additional checks (document below if any) # Screenshots (if appropriate): # Questions (if appropriate):
1 parent e9bb9f1 commit 9784422

5 files changed

Lines changed: 1048 additions & 994 deletions

File tree

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"start": "NODE_ENV=production node ./build/server/index.js",
1717
"test": "vitest run --browser.headless",
1818
"test:ui": "vitest",
19-
"test:cov": "vitest run --coverage",
19+
"test:cov": "vitest run --coverage --browser.headless",
2020
"typecheck": "tsc",
2121
"validate": "pnpm run check && pnpm run typecheck && pnpm run test && pnpm run check:unused",
2222
"check": "biome check .",
@@ -28,7 +28,7 @@
2828
},
2929
"dependencies": {
3030
"@forge42/seo-tools": "1.3.0",
31-
"@react-router/node": "7.1.0",
31+
"@react-router/node": "7.1.2",
3232
"clsx": "2.1.1",
3333
"hono": "4.6.12",
3434
"i18next": "23.15.2",
@@ -39,7 +39,7 @@
3939
"react": "19.0.0",
4040
"react-dom": "19.0.0",
4141
"react-i18next": "15.1.1",
42-
"react-router": "7.1.0",
42+
"react-router": "7.1.2",
4343
"react-router-hono-server": "2.6.2",
4444
"remix-hono": "0.0.16",
4545
"remix-i18next": "7.0.0",
@@ -50,16 +50,16 @@
5050
"@babel/preset-typescript": "7.26.0",
5151
"@biomejs/biome": "1.9.4",
5252
"@dotenvx/dotenvx": "1.24.5",
53-
"@react-router/dev": "7.1.0",
54-
"@react-router/fs-routes": "7.1.0",
53+
"@react-router/dev": "7.1.2",
54+
"@react-router/fs-routes": "7.1.2",
5555
"@testing-library/react": "16.0.1",
5656
"@types/node": "22.9.1",
5757
"@types/prompt": "1.1.9",
5858
"@types/react": "19.0.0",
5959
"@types/react-dom": "19.0.1",
60-
"@vitest/browser": "2.1.8",
61-
"@vitest/coverage-v8": "2.1.8",
62-
"@vitest/ui": "2.1.8",
60+
"@vitest/browser": "3.0.2",
61+
"@vitest/coverage-v8": "3.0.2",
62+
"@vitest/ui": "3.0.2",
6363
"autoprefixer": "10.4.20",
6464
"babel-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
6565
"chalk": "5.3.0",
@@ -73,16 +73,16 @@
7373
"tailwindcss": "3.4.15",
7474
"tsx": "4.19.2",
7575
"typescript": "5.6.3",
76-
"vite": "5.4.11",
76+
"vite": "6.0.11",
7777
"vite-plugin-babel": "1.3.0",
7878
"vite-plugin-icons-spritesheet": "2.2.1",
7979
"vite-tsconfig-paths": "5.1.3",
80-
"vitest": "2.1.8",
80+
"vitest": "3.0.3",
8181
"vitest-browser-react": "0.0.4"
8282
},
8383
"packageManager": "pnpm@9.14.2",
8484
"optionalDependencies": {
85-
"@rollup/rollup-linux-x64-gnu": "^4.24.0"
85+
"@rollup/rollup-linux-x64-gnu": "^4.31.0"
8686
},
8787
"engines": {
8888
"node": ">=22.11.0",

0 commit comments

Comments
 (0)