Skip to content

Commit 2d9475d

Browse files
committed
chore: update supported Node.js versions
1 parent 2113645 commit 2d9475d

File tree

6 files changed

+576
-256
lines changed

6 files changed

+576
-256
lines changed

.prebuild/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update \
1111

1212
RUN [ "$(uname -m)" = "x86_64" ] && apt-get install -y g++-multilib gcc-multilib || echo "ok"
1313

14-
ENV NODE_VERSION 15.8.0
14+
ENV NODE_VERSION 22.12.0
1515

1616
RUN case "${QEMU_ARCH}" in \
1717
x86_64) NODE_ARCH='x64';; \

.prebuild/buildify-windows.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,9 @@ const cwd = path.resolve(__dirname, "../");
2222

2323
// define build targets
2424
const nodeBuildTargets = [
25-
"17.0.1",
26-
"18.0.0",
27-
"19.0.0",
2825
"20.0.0",
29-
"21.0.0",
3026
"22.0.0",
27+
"24.0.0",
3128
].reduce((acc, ver) => {
3229
acc.push("-t");
3330
acc.push(ver);

.prebuild/buildify.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@ const cwd = path.resolve(__dirname, "../");
1414

1515
// define build targets
1616
const nodeBuildTargets = [
17-
"17.0.1",
18-
"18.0.0",
19-
"19.0.0",
2017
"20.0.0",
21-
"21.0.0",
2218
"22.0.0",
19+
"24.0.0",
2320
].reduce((acc, ver) => {
2421
acc.push("-t");
2522
acc.push(ver);

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ When `node-pty-prebuilt-multiarch` is installed as a package dependency, the ins
2828
| Windows | ia32, x64 |
2929

3030

31-
*We only provide prebuilt binaries for Node.js 10 and Electron 5.0.0 or higher.
31+
*We only provide prebuilt binaries for Node.js 20 and Electron 20.0.0 or higher.
3232

3333
## License
3434

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868
"eslint": "^6.8.0",
6969
"mocha": "^10.4.0",
7070
"node-abi": "4.2.0",
71-
"node-gyp": "^9.3.0",
72-
"prebuild": "^12.1.0",
71+
"node-gyp": "^11.2.0",
72+
"prebuild": "^13.0.1",
7373
"prebuildify": "^5.0.1",
7474
"ps-list": "^6.0.0",
7575
"typescript": "^3.8.3"

0 commit comments

Comments
 (0)