@tauri-apps/cli 2.9.4 → 2.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/config.schema.json +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.9.5]
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- [`f855caf8a`](https://www.github.com/tauri-apps/tauri/commit/f855caf8a3830aa5dd6d0b039312866a5d9c3606) ([#14481](https://www.github.com/tauri-apps/tauri/pull/14481) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fixed the mismatched tauri package versions check didn't work for pnpm
|
|
8
|
+
|
|
9
|
+
### Performance Improvements
|
|
10
|
+
|
|
11
|
+
- [`ce98d87ce`](https://www.github.com/tauri-apps/tauri/commit/ce98d87ce0aaa907285852eb80691197424e03c3) ([#14474](https://www.github.com/tauri-apps/tauri/pull/14474) by [@Tunglies](https://www.github.com/tauri-apps/tauri/../../Tunglies)) refactor: remove needless collect. No user facing changes.
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
- Upgraded to `tauri-cli@2.9.5`
|
|
16
|
+
|
|
3
17
|
## \[2.9.4]
|
|
4
18
|
|
|
5
19
|
### Bug Fixes
|
package/config.schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "https://schema.tauri.app/config/2.9.
|
|
3
|
+
"$id": "https://schema.tauri.app/config/2.9.4",
|
|
4
4
|
"title": "Config",
|
|
5
5
|
"description": "The Tauri configuration object.\n It is read from a file where you can define your frontend assets,\n configure the bundler and define a tray icon.\n\n The configuration file is generated by the\n [`tauri init`](https://v2.tauri.app/reference/cli/#init) command that lives in\n your Tauri application source directory (src-tauri).\n\n Once generated, you may modify it at will to customize your Tauri application.\n\n ## File Formats\n\n By default, the configuration is defined as a JSON file named `tauri.conf.json`.\n\n Tauri also supports JSON5 and TOML files via the `config-json5` and `config-toml` Cargo features, respectively.\n The JSON5 file name must be either `tauri.conf.json` or `tauri.conf.json5`.\n The TOML file name is `Tauri.toml`.\n\n ## Platform-Specific Configuration\n\n In addition to the default configuration file, Tauri can\n read a platform-specific configuration from `tauri.linux.conf.json`,\n `tauri.windows.conf.json`, `tauri.macos.conf.json`, `tauri.android.conf.json` and `tauri.ios.conf.json`\n (or `Tauri.linux.toml`, `Tauri.windows.toml`, `Tauri.macos.toml`, `Tauri.android.toml` and `Tauri.ios.toml` if the `Tauri.toml` format is used),\n which gets merged with the main configuration object.\n\n ## Configuration Structure\n\n The configuration is composed of the following objects:\n\n - [`app`](#appconfig): The Tauri configuration\n - [`build`](#buildconfig): The build configuration\n - [`bundle`](#bundleconfig): The bundle configurations\n - [`plugins`](#pluginconfig): The plugins configuration\n\n Example tauri.config.json file:\n\n ```json\n {\n \"productName\": \"tauri-app\",\n \"version\": \"0.1.0\",\n \"build\": {\n \"beforeBuildCommand\": \"\",\n \"beforeDevCommand\": \"\",\n \"devUrl\": \"http://localhost:3000\",\n \"frontendDist\": \"../dist\"\n },\n \"app\": {\n \"security\": {\n \"csp\": null\n },\n \"windows\": [\n {\n \"fullscreen\": false,\n \"height\": 600,\n \"resizable\": true,\n \"title\": \"Tauri App\",\n \"width\": 800\n }\n ]\n },\n \"bundle\": {},\n \"plugins\": {}\n }\n ```",
|
|
6
6
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.5",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"funding": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
]
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@napi-rs/cli": "^3.
|
|
44
|
+
"@napi-rs/cli": "^3.4.1",
|
|
45
45
|
"@types/node": "^24.0.0",
|
|
46
46
|
"cross-env": "10.1.0",
|
|
47
47
|
"vitest": "^4.0.0"
|
|
@@ -65,16 +65,16 @@
|
|
|
65
65
|
"tauri": "node ./tauri.js"
|
|
66
66
|
},
|
|
67
67
|
"optionalDependencies": {
|
|
68
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.9.
|
|
69
|
-
"@tauri-apps/cli-win32-x64-msvc": "2.9.
|
|
70
|
-
"@tauri-apps/cli-darwin-x64": "2.9.
|
|
71
|
-
"@tauri-apps/cli-darwin-arm64": "2.9.
|
|
72
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.9.
|
|
73
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.9.
|
|
74
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.9.
|
|
75
|
-
"@tauri-apps/cli-linux-x64-musl": "2.9.
|
|
76
|
-
"@tauri-apps/cli-linux-riscv64-gnu": "2.9.
|
|
77
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.9.
|
|
78
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.9.
|
|
68
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.9.5",
|
|
69
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.9.5",
|
|
70
|
+
"@tauri-apps/cli-darwin-x64": "2.9.5",
|
|
71
|
+
"@tauri-apps/cli-darwin-arm64": "2.9.5",
|
|
72
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.9.5",
|
|
73
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.9.5",
|
|
74
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.9.5",
|
|
75
|
+
"@tauri-apps/cli-linux-x64-musl": "2.9.5",
|
|
76
|
+
"@tauri-apps/cli-linux-riscv64-gnu": "2.9.5",
|
|
77
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.9.5",
|
|
78
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.9.5"
|
|
79
79
|
}
|
|
80
80
|
}
|