Skip to content

Commit

Permalink
🐛 fix(core): fix deno target names
Browse files Browse the repository at this point in the history
  • Loading branch information
angelespejo committed Oct 26, 2024
1 parent 4ead34c commit d88ea77
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# binarium

## 1.0.1

### Patch Changes

- fix denotargets

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "binarium",
"version": "1.0.0",
"version": "1.0.1",
"description": "Easy-to-use, zero-configuration tool to create executables of your Node, Deno or Bun projects for all platforms and architectures.",
"type": "module",
"license": "GPL-3.0",
Expand Down
4 changes: 2 additions & 2 deletions src/cmd/deno/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ export const buildBins = async ( params: BuilderContructorParams ) => {
[ consts.ARCH.X64 ] : {
[ consts.PLATFORM.LINUX ] : 'x86_64-unknown-linux-gnu',
[ consts.PLATFORM.WIN ] : 'x86_64-pc-windows-msvc',
[ consts.PLATFORM.MACOS ] : 'aarch64-apple-darwin',
[ consts.PLATFORM.MACOS ] : 'x86_64-apple-darwin',
},
[ consts.ARCH.ARM64 ] : {
[ consts.PLATFORM.LINUX ] : 'aarch64-unknown-linux-gnu',
[ consts.PLATFORM.WIN ] : undefined,
[ consts.PLATFORM.MACOS ] : 'x86_64-apple-darwin',
[ consts.PLATFORM.MACOS ] : 'aarch64-apple-darwin',
},
}

Expand Down

0 comments on commit d88ea77

Please sign in to comment.