chore: add libc field to node packages (#4856)

This commit is contained in:
Paul Soporan
2022-08-04 07:04:24 +03:00
committed by GitHub
parent 964926ff85
commit f7d2dfc7a6
5 changed files with 17 additions and 0 deletions

5
.changes/libc-field.md Normal file
View File

@@ -0,0 +1,5 @@
---
"cli.js": patch
---
Add `libc` field to Node packages.

View File

@@ -10,6 +10,9 @@
"cpu": [
"arm64"
],
"libc": [
"glibc"
],
"main": "cli.linux-arm64-gnu.node",
"files": [
"cli.linux-arm64-gnu.node"

View File

@@ -10,6 +10,9 @@
"cpu": [
"arm64"
],
"libc": [
"musl"
],
"main": "cli.linux-arm64-musl.node",
"files": [
"cli.linux-arm64-musl.node"

View File

@@ -10,6 +10,9 @@
"cpu": [
"x64"
],
"libc": [
"glibc"
],
"main": "cli.linux-x64-gnu.node",
"files": [
"cli.linux-x64-gnu.node"

View File

@@ -10,6 +10,9 @@
"cpu": [
"x64"
],
"libc": [
"musl"
],
"main": "cli.linux-x64-musl.node",
"files": [
"cli.linux-x64-musl.node"