@tauri-apps/cli 1.0.0-rc.10 → 1.0.0-rc.11
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/Cargo.toml +3 -3
- package/package.json +12 -12
- package/schema.json +1506 -1474
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.0.0-rc.11]
|
|
4
|
+
|
|
5
|
+
- Allow configuring the display options for the MSI execution allowing quieter updates.
|
|
6
|
+
- [9f2c3413](https://www.github.com/tauri-apps/tauri/commit/9f2c34131952ea83c3f8e383bc3cec7e1450429f) feat(core): configure msiexec display options, closes [#3951](https://www.github.com/tauri-apps/tauri/pull/3951) ([#4061](https://www.github.com/tauri-apps/tauri/pull/4061)) on 2022-05-15
|
|
7
|
+
|
|
3
8
|
## \[1.0.0-rc.10]
|
|
4
9
|
|
|
5
10
|
- Resolve binary file extension from target triple instead of compile-time checks to allow cross compilation.
|
package/Cargo.toml
CHANGED
|
@@ -8,9 +8,9 @@ crate-type = ["cdylib"]
|
|
|
8
8
|
|
|
9
9
|
[dependencies]
|
|
10
10
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
|
11
|
-
napi = { version = "2.
|
|
12
|
-
napi-derive = "2.
|
|
11
|
+
napi = { version = "2.4", default-features = false, features = ["napi4"] }
|
|
12
|
+
napi-derive = "2.4"
|
|
13
13
|
tauri-cli = { path = ".." }
|
|
14
14
|
|
|
15
15
|
[build-dependencies]
|
|
16
|
-
napi-build = "
|
|
16
|
+
napi-build = "2.0"
|
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.11",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@napi-rs/cli": "2.
|
|
40
|
+
"@napi-rs/cli": "2.9.0",
|
|
41
41
|
"cross-env": "7.0.3",
|
|
42
42
|
"cross-spawn": "7.0.3",
|
|
43
43
|
"fs-extra": "10.1.0",
|
|
44
|
-
"jest": "28.0
|
|
44
|
+
"jest": "28.1.0",
|
|
45
45
|
"jest-transform-toml": "1.0.0",
|
|
46
46
|
"prettier": "2.6.2"
|
|
47
47
|
},
|
|
@@ -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.11",
|
|
68
|
+
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.11",
|
|
69
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.11",
|
|
70
|
+
"@tauri-apps/cli-darwin-arm64": "1.0.0-rc.11",
|
|
71
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.11",
|
|
72
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.11",
|
|
73
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.11",
|
|
74
|
+
"@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.11",
|
|
75
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.11"
|
|
76
76
|
}
|
|
77
77
|
}
|