@tauri-apps/cli 1.0.0-rc.8 → 1.0.0-rc.9
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 +15 -0
- package/Cargo.toml +2 -2
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.0.0-rc.9]
|
|
4
|
+
|
|
5
|
+
- Exit CLI when Cargo returns a non-compilation error in `tauri dev`.
|
|
6
|
+
- [b5622882](https://www.github.com/tauri-apps/tauri/commit/b5622882cf3748e1e5a90915f415c0cd922aaaf8) fix(cli): exit on non-compilation Cargo errors, closes [#3930](https://www.github.com/tauri-apps/tauri/pull/3930) ([#3942](https://www.github.com/tauri-apps/tauri/pull/3942)) on 2022-04-22
|
|
7
|
+
- Notify CLI update when running `tauri dev`.
|
|
8
|
+
- [a649aad7](https://www.github.com/tauri-apps/tauri/commit/a649aad7ad26d4578699370d6e63d80edeca1f97) feat(cli): check and notify about updates on `tauri dev`, closes [#3789](https://www.github.com/tauri-apps/tauri/pull/3789) ([#3960](https://www.github.com/tauri-apps/tauri/pull/3960)) on 2022-04-25
|
|
9
|
+
- Kill the `beforeDevCommand` and app processes if the dev command returns an error.
|
|
10
|
+
- [485c9743](https://www.github.com/tauri-apps/tauri/commit/485c97438ac956d86bcf3794ceaa626bef968a4e) fix(cli): kill beforeDevCommand if dev code returns an error ([#3907](https://www.github.com/tauri-apps/tauri/pull/3907)) on 2022-04-19
|
|
11
|
+
- Fix `info` command showing outdated text for latest versions.
|
|
12
|
+
- [73a4b74a](https://www.github.com/tauri-apps/tauri/commit/73a4b74aea8544e6fda51c1f6697630b0768072c) fix(cli.rs/info): don't show outdated text for latest versions ([#3829](https://www.github.com/tauri-apps/tauri/pull/3829)) on 2022-04-02
|
|
13
|
+
- **Breaking change:** Enable default Cargo features except `tauri/custom-protocol` on the dev command.
|
|
14
|
+
- [f2a30d8b](https://www.github.com/tauri-apps/tauri/commit/f2a30d8bc54fc3ba49e16f69a413eca5f61a9b1f) refactor(core): use ayatana appindicator by default, keep option to use gtk ([#3916](https://www.github.com/tauri-apps/tauri/pull/3916)) on 2022-04-19
|
|
15
|
+
- Kill the `beforeDevCommand` process recursively on Unix.
|
|
16
|
+
- [e251e1b0](https://www.github.com/tauri-apps/tauri/commit/e251e1b0991d26ab10aea33cfb228f3e7f0f85b5) fix(cli): kill before dev command recursively on Unix, closes [#2794](https://www.github.com/tauri-apps/tauri/pull/2794) ([#3848](https://www.github.com/tauri-apps/tauri/pull/3848)) on 2022-04-03
|
|
17
|
+
|
|
3
18
|
## \[1.0.0-rc.8]
|
|
4
19
|
|
|
5
20
|
- Allows the `tauri.conf.json` file to be git ignored on the path lookup function.
|
package/Cargo.toml
CHANGED
|
@@ -8,8 +8,8 @@ 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.3", default-features = false, features = ["napi4"] }
|
|
12
|
+
napi-derive = "2.3"
|
|
13
13
|
tauri-cli = { path = ".." }
|
|
14
14
|
|
|
15
15
|
[build-dependencies]
|
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.9",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@napi-rs/cli": "2.
|
|
40
|
+
"@napi-rs/cli": "2.6.2",
|
|
41
41
|
"cross-spawn": "7.0.3",
|
|
42
|
-
"fs-extra": "10.0
|
|
42
|
+
"fs-extra": "10.1.0",
|
|
43
43
|
"jest": "27.5.1",
|
|
44
44
|
"jest-transform-toml": "1.0.0",
|
|
45
|
-
"prettier": "2.6.
|
|
45
|
+
"prettier": "2.6.2"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">= 10"
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"artifacts": "napi artifacts",
|
|
55
|
-
"build": "napi build --platform --release",
|
|
56
|
-
"build
|
|
55
|
+
"build:release": "napi build --platform --release",
|
|
56
|
+
"build": "napi build --platform",
|
|
57
57
|
"prepublishOnly": "napi prepublish -t npm",
|
|
58
58
|
"test": "jest --runInBand --forceExit --no-cache",
|
|
59
59
|
"version": "napi version",
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
63
63
|
},
|
|
64
64
|
"optionalDependencies": {
|
|
65
|
-
"@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.
|
|
66
|
-
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.
|
|
67
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.
|
|
68
|
-
"@tauri-apps/cli-darwin-arm64": "1.0.0-rc.
|
|
69
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.
|
|
70
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.
|
|
71
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.
|
|
72
|
-
"@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.
|
|
73
|
-
"@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.
|
|
65
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.9",
|
|
66
|
+
"@tauri-apps/cli-darwin-x64": "1.0.0-rc.9",
|
|
67
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.9",
|
|
68
|
+
"@tauri-apps/cli-darwin-arm64": "1.0.0-rc.9",
|
|
69
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.9",
|
|
70
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.9",
|
|
71
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.9",
|
|
72
|
+
"@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.9",
|
|
73
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.9"
|
|
74
74
|
}
|
|
75
75
|
}
|