Skip to content

Commit d0f4fb5

Browse files
authored
fix: opt-out for nogc finalizer change (#59)
* fix: opt-out for nogc finalizer change * chore: bump 3.3.5
1 parent 588ae96 commit d0f4fb5

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "native-keymap",
3-
"version": "3.3.4",
3+
"version": "3.3.5",
44
"description": "Get OS key mapping",
55
"main": "index.js",
66
"typings": "index.d.ts",

pipeline.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ extends:
3434
testPlatforms:
3535
- name: Linux
3636
nodeVersions:
37-
- 18.17.x
37+
- 20.x
3838
- name: MacOS
3939
nodeVersions:
40-
- 18.17.x
40+
- 20.x
4141
- name: Windows
4242
nodeVersions:
43-
- 18.17.x
43+
- 20.x
4444

4545
testSteps:
4646
# https://github.com/nodejs/node-gyp/issues/2869

src/keymapping.cc

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6+
#define NODE_API_EXPERIMENTAL_NOGC_ENV_OPT_OUT
67
#include <node.h>
78
#include <map>
89

0 commit comments

Comments
 (0)