Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@ on:

jobs:
build:
# Specify macos-13 because we need to build on an x64 machine and all macos 14 machines are arm based.
# Specify macos-15-intel because we need to build on an x64 machine and all macos 14 machines are arm based.
# There seems to be an issue building x64 variants on arm64 machines.
runs-on: macos-13
runs-on: macos-15-intel
name: Build

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: '18'
node-version: '22'

- name: Build
run: yarn install --frozen-lockfile

- name: Archive pre-built bindings
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: binding
path: binding/**
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ on:

jobs:
publish:
# Specify macos-13 because we need to build on an x64 machine and all macos 14 machines are arm based.
# Specify macos-15-intel because we need to build on an x64 machine and all macos 14 machines are arm based.
# There seems to be an issue building x64 variants on arm64 machines.
runs-on: macos-13
runs-on: macos-15-intel
name: Publish

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: '18'
node-version: '22'
registry-url: 'https://registry.npmjs.org'

- name: Build
run: yarn install --frozen-lockfile

- name: Archive pre-built bindings
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: binding
path: binding/**
Expand Down
17 changes: 5 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "node-ios-device",
"description": "Simple library for listing and installing apps on iOS devices",
"version": "1.12.1",
"version": "1.13.0",
"author": "TiDev, Inc. <tisdk@cb1inc.com>",
"maintainers": [
"Chris Barber <chris@cb1inc.com>"
Expand All @@ -24,9 +24,9 @@
"gypfile": true,
"main": "./ios-device",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"@mapbox/node-pre-gyp": "2.0.3",
"debug": "^4.3.4",
"nan": "^2.20.0",
"nan": "^2.24.0",
"node-pre-gyp-init": "^1.2.1",
"patch-package": "^6.5.1"
},
Expand All @@ -48,18 +48,11 @@
"remote_path": "./tidev/{name}/releases/download/v{version}",
"host": "https://github.com",
"targets": {
"10.24.1": 64,
"11.15.0": 67,
"12.22.11": 72,
"13.14.0": 79,
"14.19.1": 83,
"15.14.0": 88,
"16.14.2": 93,
"17.7.2": 102,
"18.13.0": 108,
"19.4.0": 111,
"20.0.0": 115,
"22.0.0": 127
"22.0.0": 127,
"24.0.0": 137
}
},
"engines": {
Expand Down
27 changes: 0 additions & 27 deletions patches/@mapbox+node-pre-gyp+1.0.10.patch

This file was deleted.

Loading