@tauri-apps/cli 2.0.0-beta.16 → 2.0.0-beta.18

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-beta.18]
4
+
5
+ ### Bug Fixes
6
+
7
+ - [`beda18bce`](https://www.github.com/tauri-apps/tauri/commit/beda18bce95fd6e10543b2d8f1eca5fb7ca0655b)([#9855](https://www.github.com/tauri-apps/tauri/pull/9855)) Fixed an issue that caused `tauri add` to fail for multiple rust-only and platform-specific plugins.
8
+ - [`4a33bc6a6`](https://www.github.com/tauri-apps/tauri/commit/4a33bc6a62d2ed9371191c8a7f78ff3f33930455)([#9553](https://www.github.com/tauri-apps/tauri/pull/9553)) Fixes `pnpm` detection when initializing and running a mobile project.
9
+
10
+ ### Dependencies
11
+
12
+ - Upgraded to `tauri-cli@2.0.0-beta.18`
13
+
14
+ ## \[2.0.0-beta.17]
15
+
16
+ ### Dependencies
17
+
18
+ - Upgraded to `tauri-cli@2.0.0-beta.17`
19
+
3
20
  ## \[2.0.0-beta.16]
4
21
 
5
22
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-beta.16",
3
+ "version": "2.0.0-beta.18",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -68,15 +68,15 @@
68
68
  "format:check": "prettier --check ./package.json ./tauri.js"
69
69
  },
70
70
  "optionalDependencies": {
71
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.16",
72
- "@tauri-apps/cli-darwin-x64": "2.0.0-beta.16",
73
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.16",
74
- "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.16",
75
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.16",
76
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.16",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.16",
78
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.16",
79
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.16",
80
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.16"
71
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.18",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-beta.18",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.18",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.18",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.18",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.18",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.18",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.18",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.18",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.18"
81
81
  }
82
82
  }