Skip to content

Commit 332ec35

Browse files
committed
fix(cli): add default triplets to napi targets config
1 parent 2c46b18 commit 332ec35

File tree

13 files changed

+211
-189
lines changed

13 files changed

+211
-189
lines changed

packages/cli/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Changelog
22

3-
## \[2.6.3]
3+
## \[2.7.0]
4+
5+
### New Features
6+
7+
- [`33d079392`](https://www.github.com/tauri-apps/tauri/commit/33d079392ac4a5a153b7d8a6d82fefd6f54a2bdf) ([#13811](https://www.github.com/tauri-apps/tauri/pull/13811) by [@mhbagheri-99](https://www.github.com/tauri-apps/tauri/../../mhbagheri-99)) Allow runner configuration to be an object with cmd, cwd, and args properties. The runner can now be configured as `{ "cmd": "my_runner", "cwd": "/path", "args": ["--quiet"] }` while maintaining backwards compatibility with the existing string format.
8+
9+
### Enhancements
10+
11+
- [`232265c70`](https://www.github.com/tauri-apps/tauri/commit/232265c70e1c213bbb3f84b5541ddc07d330fce1) ([#13209](https://www.github.com/tauri-apps/tauri/pull/13209) by [@kandrelczyk](https://www.github.com/tauri-apps/tauri/../../kandrelczyk)) Binaries are patched before bundling to add the type of a bundle they will placed in. This information will be used during update process to select the correct target.
412

513
### Bug Fixes
614

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
11
{
22
"name": "@tauri-apps/cli-darwin-arm64",
3-
"version": "0.0.0",
3+
"version": "2.6.3",
4+
"cpu": [
5+
"arm64"
6+
],
7+
"main": "cli.darwin-arm64.node",
8+
"files": [
9+
"cli.darwin-arm64.node"
10+
],
11+
"description": "Command line interface for building Tauri apps",
12+
"homepage": "https://github.com/tauri-apps/tauri#readme",
13+
"contributors": [
14+
"Tauri Programme within The Commons Conservancy"
15+
],
16+
"license": "Apache-2.0 OR MIT",
17+
"engines": {
18+
"node": ">= 10"
19+
},
420
"repository": {
521
"type": "git",
622
"url": "git+https://github.com/tauri-apps/tauri.git"
723
},
8-
"homepage": "https://github.com/tauri-apps/tauri#readme",
924
"bugs": {
1025
"url": "https://github.com/tauri-apps/tauri/issues"
1126
},
12-
"contributors": [
13-
"Tauri Programme within The Commons Conservancy"
14-
],
15-
"license": "Apache-2.0 OR MIT",
1627
"publishConfig": {
1728
"access": "public"
1829
},
1930
"os": [
2031
"darwin"
21-
],
22-
"cpu": [
23-
"arm64"
24-
],
25-
"main": "cli.darwin-arm64.node",
26-
"files": [
27-
"cli.darwin-arm64.node"
28-
],
29-
"engines": {
30-
"node": ">= 10"
31-
}
32+
]
3233
}
Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
11
{
22
"name": "@tauri-apps/cli-darwin-x64",
3-
"version": "0.0.0",
3+
"version": "2.6.3",
4+
"cpu": [
5+
"x64"
6+
],
7+
"main": "cli.darwin-x64.node",
8+
"files": [
9+
"cli.darwin-x64.node"
10+
],
11+
"description": "Command line interface for building Tauri apps",
12+
"homepage": "https://github.com/tauri-apps/tauri#readme",
13+
"contributors": [
14+
"Tauri Programme within The Commons Conservancy"
15+
],
16+
"license": "Apache-2.0 OR MIT",
17+
"engines": {
18+
"node": ">= 10"
19+
},
420
"repository": {
521
"type": "git",
622
"url": "git+https://github.com/tauri-apps/tauri.git"
723
},
8-
"homepage": "https://github.com/tauri-apps/tauri#readme",
924
"bugs": {
1025
"url": "https://github.com/tauri-apps/tauri/issues"
1126
},
12-
"contributors": [
13-
"Tauri Programme within The Commons Conservancy"
14-
],
15-
"license": "Apache-2.0 OR MIT",
1627
"publishConfig": {
1728
"access": "public"
1829
},
1930
"os": [
2031
"darwin"
21-
],
22-
"cpu": [
23-
"x64"
24-
],
25-
"main": "cli.darwin-x64.node",
26-
"files": [
27-
"cli.darwin-x64.node"
28-
],
29-
"engines": {
30-
"node": ">= 10"
31-
}
32+
]
3233
}
Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
11
{
22
"name": "@tauri-apps/cli-linux-arm-gnueabihf",
3-
"version": "0.0.0",
3+
"version": "2.6.3",
4+
"cpu": [
5+
"arm"
6+
],
7+
"main": "cli.linux-arm-gnueabihf.node",
8+
"files": [
9+
"cli.linux-arm-gnueabihf.node"
10+
],
11+
"description": "Command line interface for building Tauri apps",
12+
"homepage": "https://github.com/tauri-apps/tauri#readme",
13+
"contributors": [
14+
"Tauri Programme within The Commons Conservancy"
15+
],
16+
"license": "Apache-2.0 OR MIT",
17+
"engines": {
18+
"node": ">= 10"
19+
},
420
"repository": {
521
"type": "git",
622
"url": "git+https://github.com/tauri-apps/tauri.git"
723
},
8-
"homepage": "https://github.com/tauri-apps/tauri#readme",
924
"bugs": {
1025
"url": "https://github.com/tauri-apps/tauri/issues"
1126
},
12-
"contributors": [
13-
"Tauri Programme within The Commons Conservancy"
14-
],
15-
"license": "Apache-2.0 OR MIT",
1627
"publishConfig": {
1728
"access": "public"
1829
},
1930
"os": [
2031
"linux"
21-
],
22-
"cpu": [
23-
"arm"
24-
],
25-
"main": "cli.linux-arm-gnueabihf.node",
26-
"files": [
27-
"cli.linux-arm-gnueabihf.node"
28-
],
29-
"engines": {
30-
"node": ">= 10"
31-
}
32+
]
3233
}
Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
{
22
"name": "@tauri-apps/cli-linux-arm64-gnu",
3-
"version": "0.0.0",
3+
"version": "2.6.3",
4+
"cpu": [
5+
"arm64"
6+
],
7+
"main": "cli.linux-arm64-gnu.node",
8+
"files": [
9+
"cli.linux-arm64-gnu.node"
10+
],
11+
"description": "Command line interface for building Tauri apps",
12+
"homepage": "https://github.com/tauri-apps/tauri#readme",
13+
"contributors": [
14+
"Tauri Programme within The Commons Conservancy"
15+
],
16+
"license": "Apache-2.0 OR MIT",
17+
"engines": {
18+
"node": ">= 10"
19+
},
420
"repository": {
521
"type": "git",
622
"url": "git+https://github.com/tauri-apps/tauri.git"
723
},
8-
"homepage": "https://github.com/tauri-apps/tauri#readme",
924
"bugs": {
1025
"url": "https://github.com/tauri-apps/tauri/issues"
1126
},
12-
"contributors": [
13-
"Tauri Programme within The Commons Conservancy"
14-
],
15-
"license": "Apache-2.0 OR MIT",
1627
"publishConfig": {
1728
"access": "public"
1829
},
1930
"os": [
2031
"linux"
2132
],
22-
"cpu": [
23-
"arm64"
24-
],
2533
"libc": [
2634
"glibc"
27-
],
28-
"main": "cli.linux-arm64-gnu.node",
29-
"files": [
30-
"cli.linux-arm64-gnu.node"
31-
],
32-
"engines": {
33-
"node": ">= 10"
34-
}
35+
]
3536
}
Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
{
22
"name": "@tauri-apps/cli-linux-arm64-musl",
3-
"version": "0.0.0",
3+
"version": "2.6.3",
4+
"cpu": [
5+
"arm64"
6+
],
7+
"main": "cli.linux-arm64-musl.node",
8+
"files": [
9+
"cli.linux-arm64-musl.node"
10+
],
11+
"description": "Command line interface for building Tauri apps",
12+
"homepage": "https://github.com/tauri-apps/tauri#readme",
13+
"contributors": [
14+
"Tauri Programme within The Commons Conservancy"
15+
],
16+
"license": "Apache-2.0 OR MIT",
17+
"engines": {
18+
"node": ">= 10"
19+
},
420
"repository": {
521
"type": "git",
622
"url": "git+https://github.com/tauri-apps/tauri.git"
723
},
8-
"homepage": "https://github.com/tauri-apps/tauri#readme",
924
"bugs": {
1025
"url": "https://github.com/tauri-apps/tauri/issues"
1126
},
12-
"contributors": [
13-
"Tauri Programme within The Commons Conservancy"
14-
],
15-
"license": "Apache-2.0 OR MIT",
1627
"publishConfig": {
1728
"access": "public"
1829
},
1930
"os": [
2031
"linux"
2132
],
22-
"cpu": [
23-
"arm64"
24-
],
2533
"libc": [
2634
"musl"
27-
],
28-
"main": "cli.linux-arm64-musl.node",
29-
"files": [
30-
"cli.linux-arm64-musl.node"
31-
],
32-
"engines": {
33-
"node": ">= 10"
34-
}
35+
]
3536
}
Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
{
22
"name": "@tauri-apps/cli-linux-riscv64-gnu",
3-
"version": "0.0.0",
3+
"version": "2.6.3",
4+
"cpu": [
5+
"riscv64"
6+
],
7+
"main": "cli.linux-riscv64-gnu.node",
8+
"files": [
9+
"cli.linux-riscv64-gnu.node"
10+
],
11+
"description": "Command line interface for building Tauri apps",
12+
"homepage": "https://github.com/tauri-apps/tauri#readme",
13+
"contributors": [
14+
"Tauri Programme within The Commons Conservancy"
15+
],
16+
"license": "Apache-2.0 OR MIT",
17+
"engines": {
18+
"node": ">= 10"
19+
},
420
"repository": {
521
"type": "git",
622
"url": "git+https://github.com/tauri-apps/tauri.git"
723
},
8-
"homepage": "https://github.com/tauri-apps/tauri#readme",
924
"bugs": {
1025
"url": "https://github.com/tauri-apps/tauri/issues"
1126
},
12-
"contributors": [
13-
"Tauri Programme within The Commons Conservancy"
14-
],
15-
"license": "Apache-2.0 OR MIT",
1627
"publishConfig": {
1728
"access": "public"
1829
},
1930
"os": [
2031
"linux"
2132
],
22-
"cpu": [
23-
"riscv64"
24-
],
2533
"libc": [
2634
"glibc"
27-
],
28-
"main": "cli.linux-riscv64-gnu.node",
29-
"files": [
30-
"cli.linux-riscv64-gnu.node"
31-
],
32-
"engines": {
33-
"node": ">= 10"
34-
}
35+
]
3536
}
Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
{
22
"name": "@tauri-apps/cli-linux-x64-gnu",
3-
"version": "0.0.0",
3+
"version": "2.6.3",
4+
"cpu": [
5+
"x64"
6+
],
7+
"main": "cli.linux-x64-gnu.node",
8+
"files": [
9+
"cli.linux-x64-gnu.node"
10+
],
11+
"description": "Command line interface for building Tauri apps",
12+
"homepage": "https://github.com/tauri-apps/tauri#readme",
13+
"contributors": [
14+
"Tauri Programme within The Commons Conservancy"
15+
],
16+
"license": "Apache-2.0 OR MIT",
17+
"engines": {
18+
"node": ">= 10"
19+
},
420
"repository": {
521
"type": "git",
622
"url": "git+https://github.com/tauri-apps/tauri.git"
723
},
8-
"homepage": "https://github.com/tauri-apps/tauri#readme",
924
"bugs": {
1025
"url": "https://github.com/tauri-apps/tauri/issues"
1126
},
12-
"contributors": [
13-
"Tauri Programme within The Commons Conservancy"
14-
],
15-
"license": "Apache-2.0 OR MIT",
1627
"publishConfig": {
1728
"access": "public"
1829
},
1930
"os": [
2031
"linux"
2132
],
22-
"cpu": [
23-
"x64"
24-
],
2533
"libc": [
2634
"glibc"
27-
],
28-
"main": "cli.linux-x64-gnu.node",
29-
"files": [
30-
"cli.linux-x64-gnu.node"
31-
],
32-
"engines": {
33-
"node": ">= 10"
34-
}
35+
]
3536
}

0 commit comments

Comments
 (0)