mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
parent
a00bf18b9f
commit
2a5e15d03e
2 changed files with 2 additions and 2 deletions
|
|
@ -47,7 +47,7 @@ function generateNativePackage(target) {
|
|||
const triple = target.split("-");
|
||||
const platform = triple[0];
|
||||
const arch = triple[1];
|
||||
const libc = triple[2] && { libc: [LIBC_MAPPING[triple[2]]] }
|
||||
const libc = triple[2] && LIBC_MAPPING[triple[2]] && { libc: [LIBC_MAPPING[triple[2]]] }
|
||||
const manifest = {
|
||||
name: package_name(target),
|
||||
version,
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ function generateNativePackage(target) {
|
|||
const triple = target.split("-");
|
||||
const platform = triple[0];
|
||||
const arch = triple[1];
|
||||
const libc = triple[2] && { libc: [LIBC_MAPPING[triple[2]]] }
|
||||
const libc = triple[2] && LIBC_MAPPING[triple[2]] && { libc: [LIBC_MAPPING[triple[2]]] }
|
||||
const manifest = {
|
||||
name: package_name(target),
|
||||
version,
|
||||
|
|
|
|||
Loading…
Reference in a new issue