Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
fix: set explicit target to fix missing darwin-x64 package (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkuczera authored Jun 21, 2024
1 parent 71ddd68 commit 2e62af3
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 18 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- host: macos-latest
target: x86_64-apple-darwin
build: |
yarn build
yarn build --target x86_64-apple-darwin
strip -x *.node
- host: windows-latest
build: yarn build
Expand Down Expand Up @@ -138,8 +138,10 @@ jobs:
settings:
- host: windows-latest
target: x86_64-pc-windows-msvc
- host: macos-latest
- host: macos-13
target: x86_64-apple-darwin
- host: macos-latest
target: aarch64-apple-darwin
node:
- "18"
- "20"
Expand Down
4 changes: 2 additions & 2 deletions npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@integrationos/node-darwin-arm64",
"version": "3.7.6",
"version": "3.7.10",
"os": [
"darwin"
],
Expand All @@ -18,4 +18,4 @@
"scripts": {
"postbuild": "sed -i'' -e 's/<Type>//g' index.js && sed -i'' -e '/^export type*/d' index.d.ts && rm *-e"
}
}
}
4 changes: 2 additions & 2 deletions npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@integrationos/node-darwin-x64",
"version": "3.7.6",
"version": "3.7.10",
"os": [
"darwin"
],
Expand All @@ -18,4 +18,4 @@
"scripts": {
"postbuild": "sed -i'' -e 's/<Type>//g' index.js && sed -i'' -e '/^export type*/d' index.d.ts && rm *-e"
}
}
}
4 changes: 2 additions & 2 deletions npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@integrationos/node-linux-arm64-gnu",
"version": "3.7.6",
"version": "3.7.10",
"os": [
"linux"
],
Expand All @@ -21,4 +21,4 @@
"scripts": {
"postbuild": "sed -i'' -e 's/<Type>//g' index.js && sed -i'' -e '/^export type*/d' index.d.ts"
}
}
}
4 changes: 2 additions & 2 deletions npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@integrationos/node-linux-x64-gnu",
"version": "3.7.6",
"version": "3.7.10",
"os": [
"linux"
],
Expand All @@ -21,4 +21,4 @@
"scripts": {
"postbuild": "sed -i'' -e 's/<Type>//g' index.js && sed -i'' -e '/^export type*/d' index.d.ts"
}
}
}
4 changes: 2 additions & 2 deletions npm/win32-arm64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@integrationos/node-win32-arm64-msvc",
"version": "3.7.6",
"version": "3.7.10",
"os": [
"win32"
],
Expand All @@ -15,4 +15,4 @@
"engines": {
"node": ">= 10"
}
}
}
4 changes: 2 additions & 2 deletions npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@integrationos/node-win32-x64-msvc",
"version": "3.7.6",
"version": "3.7.10",
"os": [
"win32"
],
Expand All @@ -15,4 +15,4 @@
"engines": {
"node": ">= 10"
}
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@integrationos/node",
"version": "3.7.9",
"version": "3.7.10",
"main": "index.js",
"types": "index.d.ts",
"napi": {
Expand Down Expand Up @@ -45,4 +45,4 @@
"dependencies": {
"dotenv": "^16.4.5"
}
}
}

0 comments on commit 2e62af3

Please sign in to comment.