Skip to content

Commit

Permalink
fix: add musl to the ts release artifacts (#1042)
Browse files Browse the repository at this point in the history
<!-- ELLIPSIS_HIDDEN -->



> [!IMPORTANT]
> Add musl target support to TypeScript package in `package.json`.
> 
>   - **Behavior**:
> - Added `aarch64-unknown-linux-musl` and `x86_64-unknown-linux-musl`
to `napi.targets` in `package.json` to support musl-based systems.
> 
> <sup>This description was created by </sup>[<img alt="Ellipsis"
src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=BoundaryML%2Fbaml&utm_source=github&utm_medium=referral)<sup>
for f08ca98. It will automatically
update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
sxlijin authored Oct 14, 2024
1 parent 7f6fc2e commit e74f3e9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion engine/language_client_typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@
"aarch64-apple-darwin",
"aarch64-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu"
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl"
]
},
"engines": {
Expand Down

0 comments on commit e74f3e9

Please sign in to comment.