@tauri-apps/cli 1.0.0-rc.11 → 1.0.0-rc.12
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 +5 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.0.0-rc.12]
|
|
4
|
+
|
|
5
|
+
- Properly fetch the NPM dependency information when using Yarn 2+.
|
|
6
|
+
- [cdfa6255](https://www.github.com/tauri-apps/tauri/commit/cdfa62551115586725bd3e4c04f12c5256f20790) fix(cli): properly read info when using yarn 2+, closes [#4106](https://www.github.com/tauri-apps/tauri/pull/4106) ([#4193](https://www.github.com/tauri-apps/tauri/pull/4193)) on 2022-05-23
|
|
7
|
+
|
|
3
8
|
## \[1.0.0-rc.11]
|
|
4
9
|
|
|
5
10
|
- Allow configuring the display options for the MSI execution allowing quieter updates.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.12",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -64,14 +64,14 @@
|
|
|
64
64
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
65
65
|
},
|
|
66
66
|
"optionalDependencies": {
|
|
67
|
-
"@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.
|
|
68
|
-
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.
|
|
69
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.
|
|
70
|
-
"@tauri-apps/cli-darwin-arm64": "1.0.0-rc.
|
|
71
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.
|
|
72
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.
|
|
73
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.
|
|
74
|
-
"@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.
|
|
75
|
-
"@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.
|
|
67
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.12",
|
|
68
|
+
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.12",
|
|
69
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.12",
|
|
70
|
+
"@tauri-apps/cli-darwin-arm64": "1.0.0-rc.12",
|
|
71
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.12",
|
|
72
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.12",
|
|
73
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.12",
|
|
74
|
+
"@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.12",
|
|
75
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.12"
|
|
76
76
|
}
|
|
77
77
|
}
|