Skip to content

Commit 4425cc0

Browse files
authored
Support node v24 (#110)
* fix: allow patch updates from nan dependency This allows node v24 to build. Fixes #108 * chore: test node v24 in ci
1 parent 72f46fd commit 4425cc0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
strategy:
2424
matrix:
25-
node-version: [18.x, 20.x, 22.x, 23.x]
25+
node-version: [18.x, 20.x, 22.x, 24.x]
2626

2727
steps:
2828
- uses: actions/checkout@v3

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"license": "MIT",
2121
"dependencies": {
2222
"bindings": "1.5.0",
23-
"nan": "2.22.0"
23+
"nan": "~2.22.2"
2424
},
2525
"devDependencies": {
2626
"async": "^2.6.2",

0 commit comments

Comments
 (0)