Skip to content

Commit

Permalink
Support Electron v13-14 and Node v16 (#358)
Browse files Browse the repository at this point in the history
* Support Electron 13 and 14

* Support Node 16

* Drop support for unsupported target versions

https://nodejs.org/en/about/releases/
Currently supported versions of Node.js: v12 through v16

https://www.electronjs.org/docs/tutorial/support
Currently supported versions of Electron: v12, v13, and v14

* Update nan

* Fix EOL
  • Loading branch information
ykhwong authored Sep 11, 2021
1 parent 3442b24 commit 2297744
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 15 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 27 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,25 +68,25 @@
},
"devDependencies": {
"@types/node": "^7.0.62",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^9.0.1",
"gh-pages": "^3.2.0",
"htmlhint": "^0.15.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"minimist": "^1.2.5",
"nan": "^2.13.2",
"nan": "^2.15.0",
"node-abi": "^2.19.3",
"node-gyp": "^7.1.2",
"prebuild": "^10.0.1",
"prettier": "^2.3.1",
"robotjs": "^0.6.0",
"tar": "^6.0.5",
"gh-pages": "^3.2.0",
"vuepress": "^1.7.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.4.0",
"htmlhint": "^0.15.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1"
"vuepress": "^1.7.1"
},
"supportedTargets": [
[
Expand Down Expand Up @@ -134,6 +134,16 @@
"12.0.0",
"87"
],
[
"electron",
"13.0.0",
"89"

This comment has been minimized.

Copy link
@lacymorrow

lacymorrow Nov 1, 2023

Collaborator

Shouldn't this be 88?
I know nothing so...

],
[
"electron",
"14.0.0",
"89"
],
[
"node",
"10.0.0",
Expand Down Expand Up @@ -163,6 +173,12 @@
"node",
"15.0.0",
"88"
],
[
"node",
"16.0.0",
"93"
]
]
}

5 comments on commit 2297744

@tylerlong
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please release a new version?

@skarbovskiy
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any chance this to be released?

@stepheneb
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would also love to see this released

@jove0610
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It says that this is already committed... but nothing happens when I npm i iohook

@dement6d
Copy link

@dement6d dement6d commented on 2297744 May 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It says that this is already committed... but nothing happens when I npm i iohook

It's not released, here's a download of my build of node-v93-win32-x64 which doesn't work for me but maybe would for someone: iohook.zip

Please sign in to comment.