From 8c90a162bf21ea5caa550fe13d378c244c3374fe Mon Sep 17 00:00:00 2001 From: Devon Govett Date: Sun, 30 Jul 2023 13:47:44 -0700 Subject: [PATCH] Add 32-bit windows prebuild MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apparently node still offers a 32-bit binary for windows and people often install it even on 64-bit systems by mistake. 🤦‍♂️ --- .github/workflows/release.yml | 3 +++ package.json | 2 +- scripts/build-npm.js | 4 ++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c73297f..9db0926 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,9 @@ jobs: - os: windows-latest arch: arm64 node: 20 + - os: windows-latest + arch: ia32 + node: 16 - os: macos-latest arch: x64 node: 16 diff --git a/package.json b/package.json index 0c5f709..509649b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@parcel/watcher", - "version": "2.2.1-alpha.0", + "version": "2.3.0-alpha.0", "main": "index.js", "types": "index.d.ts", "repository": { diff --git a/scripts/build-npm.js b/scripts/build-npm.js index 7772232..5389925 100644 --- a/scripts/build-npm.js +++ b/scripts/build-npm.js @@ -19,6 +19,10 @@ const triples = [ platform: 'win32', arch: 'arm64' }, + { + platform: 'win32', + arch: 'ia32' + }, { platform: 'linux', arch: 'x64',