Skip to content

Commit 040ab9f

Browse files
committed
feat: support more platforms
1 parent f75d902 commit 040ab9f

File tree

15 files changed

+147
-30
lines changed

15 files changed

+147
-30
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## 0.2.0
4+
feat: support more platforms
5+
36
## 0.1.2
47
fix: running on linux throws errors
58

npm/darwin-arm64/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-unix-socket-darwin-arm64",
3-
"version": "0.0.0",
3+
"version": "0.2.0",
44
"os": [
55
"darwin"
66
],
@@ -11,8 +11,13 @@
1111
"files": [
1212
"node-unix-socket.darwin-arm64.node"
1313
],
14+
"description": "node-unix-socket allows you to use SO_REUSEPORT, SOCK_SEQPACKET, SOCK_DGRAM in Node.js.",
15+
"author": {
16+
"email": "oyydoibh@gmail.com",
17+
"name": "Ouyang Yadong"
18+
},
1419
"license": "MIT",
1520
"engines": {
1621
"node": ">= 10"
1722
}
18-
}
23+
}

npm/darwin-x64/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-unix-socket-darwin-x64",
3-
"version": "0.0.0",
3+
"version": "0.2.0",
44
"os": [
55
"darwin"
66
],
@@ -11,8 +11,13 @@
1111
"files": [
1212
"node-unix-socket.darwin-x64.node"
1313
],
14+
"description": "node-unix-socket allows you to use SO_REUSEPORT, SOCK_SEQPACKET, SOCK_DGRAM in Node.js.",
15+
"author": {
16+
"email": "oyydoibh@gmail.com",
17+
"name": "Ouyang Yadong"
18+
},
1419
"license": "MIT",
1520
"engines": {
1621
"node": ">= 10"
1722
}
18-
}
23+
}

npm/linux-arm-gnu/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# `node-unix-socket-linux-arm-gnu`
2+
3+
This is the **armv7-unknown-linux-gnu** binary for `node-unix-socket`

npm/linux-arm-gnu/package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "node-unix-socket-linux-arm-gnu",
3+
"version": "0.2.0",
4+
"os": [
5+
"linux"
6+
],
7+
"cpu": [
8+
"arm"
9+
],
10+
"main": "node-unix-socket.linux-arm-gnu.node",
11+
"files": [
12+
"node-unix-socket.linux-arm-gnu.node"
13+
],
14+
"description": "node-unix-socket allows you to use SO_REUSEPORT, SOCK_SEQPACKET, SOCK_DGRAM in Node.js.",
15+
"author": {
16+
"email": "oyydoibh@gmail.com",
17+
"name": "Ouyang Yadong"
18+
},
19+
"license": "MIT",
20+
"engines": {
21+
"node": ">= 10"
22+
},
23+
"libc": [
24+
"glibc"
25+
]
26+
}

npm/linux-arm64-gnu/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# `node-unix-socket-linux-arm64-gnu`
2+
3+
This is the **aarch64-unknown-linux-gnu** binary for `node-unix-socket`

npm/linux-arm64-gnu/package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "node-unix-socket-linux-arm64-gnu",
3+
"version": "0.2.0",
4+
"os": [
5+
"linux"
6+
],
7+
"cpu": [
8+
"arm64"
9+
],
10+
"main": "node-unix-socket.linux-arm64-gnu.node",
11+
"files": [
12+
"node-unix-socket.linux-arm64-gnu.node"
13+
],
14+
"description": "node-unix-socket allows you to use SO_REUSEPORT, SOCK_SEQPACKET, SOCK_DGRAM in Node.js.",
15+
"author": {
16+
"email": "oyydoibh@gmail.com",
17+
"name": "Ouyang Yadong"
18+
},
19+
"license": "MIT",
20+
"engines": {
21+
"node": ">= 10"
22+
},
23+
"libc": [
24+
"glibc"
25+
]
26+
}

npm/linux-arm64-musl/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# `node-unix-socket-linux-arm64-musl`
2+
3+
This is the **aarch64-unknown-linux-musl** binary for `node-unix-socket`

npm/linux-arm64-musl/package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "node-unix-socket-linux-arm64-musl",
3+
"version": "0.2.0",
4+
"os": [
5+
"linux"
6+
],
7+
"cpu": [
8+
"arm64"
9+
],
10+
"main": "node-unix-socket.linux-arm64-musl.node",
11+
"files": [
12+
"node-unix-socket.linux-arm64-musl.node"
13+
],
14+
"description": "node-unix-socket allows you to use SO_REUSEPORT, SOCK_SEQPACKET, SOCK_DGRAM in Node.js.",
15+
"author": {
16+
"email": "oyydoibh@gmail.com",
17+
"name": "Ouyang Yadong"
18+
},
19+
"license": "MIT",
20+
"engines": {
21+
"node": ">= 10"
22+
},
23+
"libc": [
24+
"musl"
25+
]
26+
}

npm/linux-x64-gnu/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-unix-socket-linux-x64-gnu",
3-
"version": "0.0.0",
3+
"version": "0.2.0",
44
"os": [
55
"linux"
66
],
@@ -11,11 +11,16 @@
1111
"files": [
1212
"node-unix-socket.linux-x64-gnu.node"
1313
],
14+
"description": "node-unix-socket allows you to use SO_REUSEPORT, SOCK_SEQPACKET, SOCK_DGRAM in Node.js.",
15+
"author": {
16+
"email": "oyydoibh@gmail.com",
17+
"name": "Ouyang Yadong"
18+
},
1419
"license": "MIT",
1520
"engines": {
1621
"node": ">= 10"
1722
},
1823
"libc": [
1924
"glibc"
2025
]
21-
}
26+
}

0 commit comments

Comments
 (0)