Skip to content

Commit bd650b5

Browse files
committed
Merge branch 'main' into vite-6-beta-support
2 parents 04b1142 + da54670 commit bd650b5

File tree

50 files changed

+798
-826
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+798
-826
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# build and test on linux, windows, mac with node 18,20
21
name: CI
32

43
on:
@@ -22,15 +21,15 @@ permissions:
2221
contents: read # to fetch code (actions/checkout)
2322

2423
jobs:
25-
# "checks" job runs on linux + 16 only and checks that install, build, lint and audit work
24+
# "checks" job runs on linux + node lts only and checks that install, build, lint and audit work
2625
# it also primes the pnpm store cache for linux, important for downstream tests
2726
checks:
2827
timeout-minutes: 5
2928
runs-on: ${{ matrix.os }}
3029
strategy:
3130
matrix:
3231
# pseudo-matrix for convenience, NEVER use more than a single combination
33-
node: [20]
32+
node: [22]
3433
os: [ubuntu-latest]
3534
steps:
3635
- uses: actions/checkout@v4
@@ -68,18 +67,19 @@ jobs:
6867
if: (${{ success() }} || ${{ failure() }})
6968
run: pnpm generate:types && [ "`git status --porcelain=v1`" == "" ]
7069

70+
# "test" job runs on linux, windows, mac with node active lts and linux with node maintenance lts
7171
test:
7272
timeout-minutes: 10
7373
runs-on: ${{ matrix.os }}
7474
strategy:
7575
fail-fast: false
7676
matrix:
77-
node: [20]
77+
node: [22]
7878
os: [ubuntu-latest, macos-latest, windows-latest]
7979
include:
8080
- node: 18
8181
os: ubuntu-latest
82-
- node: 22
82+
- node: 20
8383
os: ubuntu-latest
8484
steps:
8585
- uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
# pseudo-matrix for convenience, NEVER use more than a single combination
22-
node: [20]
22+
node: [22]
2323
os: [ubuntu-latest]
2424
steps:
2525
- name: checkout

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,45 +24,45 @@
2424
"devDependencies": {
2525
"@changesets/cli": "^2.27.9",
2626
"@eslint/eslintrc": "^3.1.0",
27-
"@eslint/js": "^9.13.0",
28-
"@stylistic/eslint-plugin-js": "^2.9.0",
27+
"@eslint/js": "^9.14.0",
28+
"@stylistic/eslint-plugin-js": "^2.10.1",
2929
"@sveltejs/eslint-config": "^8.1.0",
3030
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
3131
"@types/fs-extra": "^11.0.4",
32-
"@types/node": "^20.17.1",
32+
"@types/node": "^22.9.0",
3333
"cross-env": "^7.0.3",
3434
"dts-buddy": "^0.5.3",
35-
"eslint": "^9.13.0",
35+
"eslint": "^9.14.0",
3636
"eslint-config-prettier": "^9.1.0",
3737
"eslint-plugin-markdown": "^5.1.0",
38-
"eslint-plugin-n": "^17.11.1",
38+
"eslint-plugin-n": "^17.13.2",
3939
"eslint-plugin-prettier": "^5.2.1",
4040
"eslint-plugin-svelte": "^2.46.0",
4141
"execa": "^8.0.1",
4242
"fs-extra": "^11.2.0",
43-
"globals": "^15.11.0",
43+
"globals": "^15.12.0",
4444
"husky": "^9.1.6",
4545
"lint-staged": "^15.2.10",
4646
"node-fetch": "^3.3.2",
4747
"npm-run-all2": "^7.0.1",
4848
"playwright-core": "~1.48.2",
4949
"prettier": "^3.3.3",
50-
"prettier-plugin-svelte": "^3.2.7",
50+
"prettier-plugin-svelte": "^3.2.8",
5151
"publint": "^0.2.12",
52-
"svelte": "^5.1.3",
52+
"svelte": "^5.2.0",
5353
"svelte-eslint-parser": "^0.43.0",
5454
"typescript": "^5.6.3",
55-
"typescript-eslint": "^8.11.0",
56-
"vite": "^5.4.10",
57-
"vitest": "^2.1.3"
55+
"typescript-eslint": "^8.14.0",
56+
"vite": "^5.4.11",
57+
"vitest": "^2.1.5"
5858
},
5959
"lint-staged": {
6060
"*.{js,ts,svelte,html,md,svx}": "eslint --cache --fix",
6161
"*": [
6262
"prettier --cache --ignore-path .gitignore --ignore-unknown --write"
6363
]
6464
},
65-
"packageManager": "pnpm@9.12.3",
65+
"packageManager": "pnpm@9.13.2",
6666
"engines": {
6767
"pnpm": "^9.0.0",
6868
"node": "^18.0.0 || >=20"

packages/e2e-tests/_test_dependencies/svelte-api-only/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
},
1616
"type": "module",
1717
"dependencies": {
18-
"svelte": "^5.1.3"
18+
"svelte": "^5.2.0"
1919
}
2020
}

packages/e2e-tests/_test_dependencies/svelte-hybrid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
},
2020
"dependencies": {
21-
"@types/node": "^20.17.1",
21+
"@types/node": "^22.9.0",
2222
"e2e-test-dep-cjs-only": "file:../cjs-only"
2323
},
2424
"type": "module"

packages/e2e-tests/autoprefixer-browerslist/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"devDependencies": {
1414
"@sveltejs/vite-plugin-svelte": "workspace:^",
1515
"autoprefixer": "^10.4.20",
16-
"postcss": "^8.4.47",
16+
"postcss": "^8.4.49",
1717
"postcss-load-config": "^6.0.1",
18-
"svelte": "^5.1.3",
18+
"svelte": "^5.2.0",
1919
"svelte-preprocess": "^6.0.3",
20-
"vite": "^5.4.10"
20+
"vite": "^5.4.11"
2121
},
2222
"type": "module"
2323
}

packages/e2e-tests/configfile-custom/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
},
1313
"devDependencies": {
1414
"@sveltejs/vite-plugin-svelte": "workspace:^",
15-
"svelte": "^5.1.3",
16-
"vite": "^5.4.10"
15+
"svelte": "^5.2.0",
16+
"vite": "^5.4.11"
1717
},
1818
"type": "module"
1919
}

packages/e2e-tests/configfile-esm/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
},
1313
"devDependencies": {
1414
"@sveltejs/vite-plugin-svelte": "workspace:^",
15-
"svelte": "^5.1.3",
15+
"svelte": "^5.2.0",
1616
"svelte-preprocess": "^6.0.3",
17-
"vite": "^5.4.10"
17+
"vite": "^5.4.11"
1818
},
1919
"type": "module"
2020
}

packages/e2e-tests/css-dev-sourcemap/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
},
1111
"devDependencies": {
1212
"@sveltejs/vite-plugin-svelte": "workspace:^",
13-
"sass": "^1.80.4",
14-
"svelte": "^5.1.3",
15-
"vite": "^5.4.10"
13+
"sass": "^1.81.0",
14+
"svelte": "^5.2.0",
15+
"vite": "^5.4.11"
1616
}
1717
}

packages/e2e-tests/custom-extensions/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
},
1010
"devDependencies": {
1111
"@sveltejs/vite-plugin-svelte": "workspace:^",
12-
"svelte": "^5.1.3",
13-
"vite": "^5.4.10"
12+
"svelte": "^5.2.0",
13+
"vite": "^5.4.11"
1414
},
1515
"type": "module"
1616
}

0 commit comments

Comments
 (0)