Skip to content

Commit

Permalink
Add 32-bit windows prebuild
Browse files Browse the repository at this point in the history
Apparently node still offers a 32-bit binary for windows and people often install it even on 64-bit systems by mistake. 🤦‍♂️
  • Loading branch information
devongovett committed Jul 30, 2023
1 parent fcd2541 commit 8c90a16
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
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": "@parcel/watcher",
"version": "2.2.1-alpha.0",
"version": "2.3.0-alpha.0",
"main": "index.js",
"types": "index.d.ts",
"repository": {
Expand Down
4 changes: 4 additions & 0 deletions scripts/build-npm.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ const triples = [
platform: 'win32',
arch: 'arm64'
},
{
platform: 'win32',
arch: 'ia32'
},
{
platform: 'linux',
arch: 'x64',
Expand Down

0 comments on commit 8c90a16

Please sign in to comment.