Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 2297744

Browse files
authored
Support Electron v13-14 and Node v16 (wilix-team#358)
* 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
1 parent 3442b24 commit 2297744

File tree

2 files changed

+31
-15
lines changed

2 files changed

+31
-15
lines changed

package-lock.json

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

package.json

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,25 +68,25 @@
6868
},
6969
"devDependencies": {
7070
"@types/node": "^7.0.62",
71+
"eslint": "^7.28.0",
72+
"eslint-config-prettier": "^8.3.0",
73+
"eslint-plugin-only-warn": "^1.0.2",
74+
"eslint-plugin-prettier": "^3.4.0",
7175
"fs-extra": "^9.0.1",
76+
"gh-pages": "^3.2.0",
77+
"htmlhint": "^0.15.1",
78+
"husky": "^6.0.0",
7279
"jest": "^26.6.3",
80+
"lint-staged": "^11.0.0",
7381
"minimist": "^1.2.5",
74-
"nan": "^2.13.2",
82+
"nan": "^2.15.0",
7583
"node-abi": "^2.19.3",
7684
"node-gyp": "^7.1.2",
7785
"prebuild": "^10.0.1",
86+
"prettier": "^2.3.1",
7887
"robotjs": "^0.6.0",
7988
"tar": "^6.0.5",
80-
"gh-pages": "^3.2.0",
81-
"vuepress": "^1.7.1",
82-
"eslint": "^7.28.0",
83-
"eslint-config-prettier": "^8.3.0",
84-
"eslint-plugin-only-warn": "^1.0.2",
85-
"eslint-plugin-prettier": "^3.4.0",
86-
"htmlhint": "^0.15.1",
87-
"husky": "^6.0.0",
88-
"lint-staged": "^11.0.0",
89-
"prettier": "^2.3.1"
89+
"vuepress": "^1.7.1"
9090
},
9191
"supportedTargets": [
9292
[
@@ -134,6 +134,16 @@
134134
"12.0.0",
135135
"87"
136136
],
137+
[
138+
"electron",
139+
"13.0.0",
140+
"89"
141+
],
142+
[
143+
"electron",
144+
"14.0.0",
145+
"89"
146+
],
137147
[
138148
"node",
139149
"10.0.0",
@@ -163,6 +173,12 @@
163173
"node",
164174
"15.0.0",
165175
"88"
176+
],
177+
[
178+
"node",
179+
"16.0.0",
180+
"93"
166181
]
167182
]
168183
}
184+

0 commit comments

Comments
 (0)