@tauri-apps/cli 2.2.3 → 2.2.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 +16 -0
- package/config.schema.json +2 -2
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.2.5]
|
|
4
|
+
|
|
5
|
+
### Dependencies
|
|
6
|
+
|
|
7
|
+
- Upgraded to `tauri-cli@2.2.5`
|
|
8
|
+
|
|
9
|
+
## \[2.2.4]
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- [`cad550445`](https://www.github.com/tauri-apps/tauri/commit/cad5504455ffa53e297cebff473c113b1afa5d29) ([#12354](https://www.github.com/tauri-apps/tauri/pull/12354) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Fixed and issue that caused `tauri add` to try to install incorrect npm packages.
|
|
14
|
+
|
|
15
|
+
### Dependencies
|
|
16
|
+
|
|
17
|
+
- Upgraded to `tauri-cli@2.2.4`
|
|
18
|
+
|
|
3
19
|
## \[2.2.3]
|
|
4
20
|
|
|
5
21
|
### Enhancements
|
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.2.
|
|
3
|
+
"$id": "https://schema.tauri.app/config/2.2.3",
|
|
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\": \"../dist\",\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",
|
|
@@ -1924,7 +1924,7 @@
|
|
|
1924
1924
|
]
|
|
1925
1925
|
},
|
|
1926
1926
|
"useLocalToolsDir": {
|
|
1927
|
-
"description": "Whether to use the project's `target` directory, for caching build tools (e.g., Wix and NSIS) when building this application. Defaults to `false`.\n\n If true, tools will be cached in `target
|
|
1927
|
+
"description": "Whether to use the project's `target` directory, for caching build tools (e.g., Wix and NSIS) when building this application. Defaults to `false`.\n\n If true, tools will be cached in `target/.tauri/`.\n If false, tools will be cached in the current user's platform-specific cache directory.\n\n An example where it can be appropriate to set this to `true` is when building this application as a Windows System user (e.g., AWS EC2 workloads),\n because the Window system's app data directory is restricted.",
|
|
1928
1928
|
"default": false,
|
|
1929
1929
|
"type": "boolean"
|
|
1930
1930
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -62,15 +62,15 @@
|
|
|
62
62
|
"tauri": "node ./tauri.js"
|
|
63
63
|
},
|
|
64
64
|
"optionalDependencies": {
|
|
65
|
-
"@tauri-apps/cli-win32-x64-msvc": "2.2.
|
|
66
|
-
"@tauri-apps/cli-darwin-x64": "2.2.
|
|
67
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.2.
|
|
68
|
-
"@tauri-apps/cli-darwin-arm64": "2.2.
|
|
69
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.2.
|
|
70
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.2.
|
|
71
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.2.
|
|
72
|
-
"@tauri-apps/cli-linux-x64-musl": "2.2.
|
|
73
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.2.
|
|
74
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.2.
|
|
65
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.2.5",
|
|
66
|
+
"@tauri-apps/cli-darwin-x64": "2.2.5",
|
|
67
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.2.5",
|
|
68
|
+
"@tauri-apps/cli-darwin-arm64": "2.2.5",
|
|
69
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.2.5",
|
|
70
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.2.5",
|
|
71
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.2.5",
|
|
72
|
+
"@tauri-apps/cli-linux-x64-musl": "2.2.5",
|
|
73
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.2.5",
|
|
74
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.2.5"
|
|
75
75
|
}
|
|
76
76
|
}
|