feat(cli.js): add 32bit cli for windows (#3540)

Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
Fabian-Lars 2022-02-24 14:05:13 +01:00 committed by GitHub
parent e694dd6730
commit fb6744daa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 32 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"cli.js": patch
---
Added `i686-pc-windows-msvc` to the prebuilt targets.

View File

@ -28,6 +28,10 @@ jobs:
build: yarn build
target: x86_64-pc-windows-msvc
architecture: x64
- host: windows-latest
build: yarn build --target i686-pc-windows-msvc
target: i686-pc-windows-msvc
architecture: x64
- host: ubuntu-18.04
target: x86_64-unknown-linux-gnu
architecture: x64

View File

@ -0,0 +1,3 @@
# `@tauri-apps/cli-win32-ia32-msvc`
This is the **i686-pc-windows-msvc** binary for `@tauri-apps/cli`

View File

@ -0,0 +1,18 @@
{
"name": "@tauri-apps/cli-win32-ia32-msvc",
"version": "0.0.0",
"os": [
"win32"
],
"cpu": [
"ia32"
],
"main": "cli.win32-ia32-msvc.node",
"files": [
"cli.win32-ia32-msvc.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}

View File

@ -31,7 +31,8 @@
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl"
"x86_64-unknown-linux-musl",
"i686-pc-windows-msvc"
]
}
},