Skip to content

Commit 927e960

Browse files
authored
fix: nodejs v16.x support (#100)
1 parent b76564d commit 927e960

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828

2929
strategy:
3030
matrix:
31-
os: [ubuntu-latest, macos-latest, windows-latest]
32-
node-version: [8.x, 12.x, 14.x]
31+
os: [ubuntu-latest, macos-latest, windows-2019]
32+
node-version: [8.x, 12.x, 14.x, 16.x]
3333

3434
steps:
3535
- uses: actions/checkout@v2

binding.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"<!(node -e \"require('nan')\")"
8282
],
8383
"cflags_cc": [
84-
"-std=c++11"
84+
"-std=c++14"
8585
],
8686
}
8787
]

package-lock.json

Lines changed: 8 additions & 8 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
@@ -16,7 +16,7 @@
1616
},
1717
"dependencies": {
1818
"bindings": "*",
19-
"nan": "^2.14.1"
19+
"nan": "^2.15.0"
2020
},
2121
"keywords": [
2222
"argon2",

0 commit comments

Comments
 (0)