Skip to content

Commit 0133e5a

Browse files
committed
Update dependencies and dev dependencies
Notably, update whatwg-url, which requires updating our minimum Node.js version.
1 parent 99af36f commit 0133e5a

File tree

3 files changed

+43
-21
lines changed

3 files changed

+43
-21
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,14 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
node-version:
19+
# Explicitly test minimum Node.js versions. Keep in sync with package.json.
20+
- 20.19.0
1921
- 20
22+
- 22.12.0
2023
- 22
21-
- 24
22-
- latest
24+
- 24.0.0
25+
- lts/* # currently 24
26+
- latest # currently 25
2327
steps:
2428
- uses: actions/checkout@v6
2529
- uses: actions/setup-node@v6

package-lock.json

Lines changed: 33 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@
2828
},
2929
"dependencies": {
3030
"whatwg-mimetype": "^5.0.0",
31-
"whatwg-url": "^15.1.0"
31+
"whatwg-url": "^16.0.0"
3232
},
3333
"devDependencies": {
34-
"@domenic/eslint-config": "^4.0.1",
34+
"@domenic/eslint-config": "^4.1.0",
3535
"c8": "^10.1.3",
3636
"eslint": "^9.39.2",
37-
"globals": "^17.0.0"
37+
"globals": "^17.3.0"
3838
},
3939
"engines": {
40-
"node": ">=20"
40+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
4141
},
4242
"c8": {
4343
"reporter": [

0 commit comments

Comments
 (0)