Skip to content

Commit 42880cf

Browse files
wmertensshairez
authored andcommitted
chore: update vite and vitest
also make e2e timeouts longer
1 parent 99296ea commit 42880cf

File tree

12 files changed

+304
-716
lines changed

12 files changed

+304
-716
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ jobs:
189189
with:
190190
lookup-only: true
191191
path: e2e-tests-completed.txt
192-
key: ${{ hashfiles('others-key.txt', 'starters/e2e/**/*', 'starters/apps/e2e/**/*') }}
192+
key: ${{ hashfiles('others-key.txt', 'starters/**/*') }}
193193

194194
############ BUILD Qwik ############
195195
build-qwik:

package.json

+16-6
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@
1010
"syncpack": {
1111
"versionGroups": [
1212
{
13-
"label": "Separate prod deps from dev deps",
13+
"label": "Be lenient in vite versions for prod. v4 is broken, v5 is good",
1414
"dependencyTypes": [
15-
"prod",
16-
"peer"
17-
]
15+
"prod"
16+
],
17+
"dependencies": [
18+
"vite"
19+
],
20+
"pinVersion": "^5"
1821
},
1922
{
2023
"label": "use workspace protocol for local packages and allow patch versions (used in e.g. qwik-react)",
@@ -36,6 +39,13 @@
3639
"dev"
3740
],
3841
"pinVersion": "workspace:^"
42+
},
43+
{
44+
"label": "Separate prod deps from dev deps",
45+
"dependencyTypes": [
46+
"prod",
47+
"peer"
48+
]
3949
}
4050
],
4151
"semverGroups": [
@@ -149,11 +159,11 @@
149159
"typescript": "5.4.5",
150160
"undici": "*",
151161
"vfile": "6.0.1",
152-
"vite": "5.3.4",
162+
"vite": "5.3.5",
153163
"vite-imagetools": "7.0.4",
154164
"vite-plugin-dts": "3.9.1",
155165
"vite-tsconfig-paths": "4.3.2",
156-
"vitest": "1.6.0",
166+
"vitest": "2.0.5",
157167
"watchlist": "0.3.1",
158168
"which-pm-runs": "1.1.0",
159169
"zod": "3.22.4"

packages/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"typescript": "5.4.5",
5353
"undici": "*",
5454
"valibot": "0.33.3",
55-
"vite": "5.3.4",
55+
"vite": "5.3.5",
5656
"vite-plugin-inspect": "0.8.5",
5757
"wrangler": "3.65.1"
5858
},

packages/insights/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"tailwindcss": "3.4.6",
3636
"typescript": "5.4.5",
3737
"undici": "*",
38-
"vite": "5.3.4",
38+
"vite": "5.3.5",
3939
"vite-tsconfig-paths": "4.3.2",
40-
"vitest": "1.6.0"
40+
"vitest": "2.0.5"
4141
},
4242
"engines": {
4343
"node": ">=16.8.0 <18.0.0 || >=18.11"

packages/qwik-city/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"version": "1.7.3",
55
"bugs": "https://github.com/QwikDev/qwik/issues",
66
"dependencies": {
7-
"@mdx-js/mdx": "^3.0.1",
8-
"@types/mdx": "^2.0.13",
7+
"@mdx-js/mdx": "^3",
8+
"@types/mdx": "^2",
99
"source-map": "^0.7.4",
10-
"svgo": "3.3.2",
10+
"svgo": "^3.3",
1111
"undici": "*",
1212
"vfile": "6.0.1",
13-
"vite": "5.3.4",
14-
"vite-imagetools": "7.0.4",
15-
"zod": "^3.22.4"
13+
"vite": "^5",
14+
"vite-imagetools": "^7",
15+
"zod": "3.22.4"
1616
},
1717
"devDependencies": {
1818
"@azure/functions": "3.5.1",

packages/qwik-labs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"prettier": "3.3.3",
1515
"typescript": "5.4.5",
1616
"undici": "*",
17-
"vite": "5.3.4"
17+
"vite": "5.3.5"
1818
},
1919
"engines": {
2020
"node": ">=16.8.0 <18.0.0 || >=18.11"

packages/qwik-react/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"react": "18.3.1",
1111
"react-dom": "18.3.1",
1212
"typescript": "5.4.5",
13-
"vite": "5.3.4"
13+
"vite": "5.3.5"
1414
},
1515
"engines": {
1616
"node": ">=16.8.0 <18.0.0 || >=18.11"
@@ -35,11 +35,11 @@
3535
"license": "MIT",
3636
"main": "./lib/index.qwik.mjs",
3737
"peerDependencies": {
38-
"@builder.io/qwik": "1.7.3",
39-
"@types/react": "18.3.3",
40-
"@types/react-dom": "18.3.0",
41-
"react": "18.3.1",
42-
"react-dom": "18.3.1"
38+
"@builder.io/qwik": "workspace:^",
39+
"@types/react": "^18",
40+
"@types/react-dom": "^18",
41+
"react": "^18",
42+
"react-dom": "^18"
4343
},
4444
"qwik": "./lib/index.qwik.mjs",
4545
"repository": {

packages/qwik-worker/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"bugs": "https://github.com/QwikDev/qwik/issues",
66
"devDependencies": {
77
"@builder.io/qwik": "workspace:^",
8-
"vite": "5.3.4",
8+
"vite": "5.3.5",
99
"vite-plugin-static-copy": "1.0.6"
1010
},
1111
"engines": {
@@ -24,7 +24,7 @@
2424
"license": "MIT",
2525
"main": "./lib/index.qwik.mjs",
2626
"peerDependencies": {
27-
"@builder.io/qwik": "1.7.3"
27+
"@builder.io/qwik": "workspace:^"
2828
},
2929
"qwik": "./lib/index.qwik.mjs",
3030
"repository": {

packages/qwik/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
}
2626
],
2727
"dependencies": {
28-
"csstype": "^3.1.3",
29-
"vite": "^5.2.10"
28+
"csstype": "^3.1",
29+
"vite": "^5"
3030
},
3131
"devDependencies": {
3232
"@builder.io/qwik": "workspace:^",

0 commit comments

Comments
 (0)