@tauri-apps/cli 2.0.0-alpha.0 → 2.0.0-alpha.2

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 +24 -0
  2. package/package.json +13 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-alpha.2]
4
+
5
+ - Fixes `TAURI_*` environment variables for hook scripts on mobile commands.
6
+ - [1af9be90](https://www.github.com/tauri-apps/tauri/commit/1af9be904a309138b9f79dc741391000b1652c75) feat(cli): properly fill target for TAURI\_ env vars on mobile ([#6116](https://www.github.com/tauri-apps/tauri/pull/6116)) on 2023-01-23
7
+ - Force colored logs on mobile commands.
8
+ - [2c4a0bbd](https://www.github.com/tauri-apps/tauri/commit/2c4a0bbd1fbe15d7500264e6490772397e1917ed) feat(cli): force colored logs on mobile commands ([#5934](https://www.github.com/tauri-apps/tauri/pull/5934)) on 2022-12-28
9
+ - Keep the process alive even when the iOS application is closed.
10
+ - [dee9460f](https://www.github.com/tauri-apps/tauri/commit/dee9460f9c9bc92e9c638e7691e616849ac2085b) feat: keep CLI alive when iOS app exits, show logs, closes [#5855](https://www.github.com/tauri-apps/tauri/pull/5855) ([#5902](https://www.github.com/tauri-apps/tauri/pull/5902)) on 2022-12-27
11
+ - Show all application logs on iOS.
12
+ - [dee9460f](https://www.github.com/tauri-apps/tauri/commit/dee9460f9c9bc92e9c638e7691e616849ac2085b) feat: keep CLI alive when iOS app exits, show logs, closes [#5855](https://www.github.com/tauri-apps/tauri/pull/5855) ([#5902](https://www.github.com/tauri-apps/tauri/pull/5902)) on 2022-12-27
13
+ - Print log output for all tags on Android development.
14
+ - [8cc11149](https://www.github.com/tauri-apps/tauri/commit/8cc111494d74161e489152e52191e1442dd99759) fix(cli): print Android logs for all tags on 2023-01-17
15
+ - Add support to custom and kebab case library names for mobile apps.
16
+ - [50f6dd87](https://www.github.com/tauri-apps/tauri/commit/50f6dd87b1ac2c99f8794b055f1acba4ef7d34d3) feat: improvements to support hyphens in crate name ([#5989](https://www.github.com/tauri-apps/tauri/pull/5989)) on 2023-01-06
17
+ - Fix target directory detection when compiling for Android.
18
+ - [e873bae0](https://www.github.com/tauri-apps/tauri/commit/e873bae09f0f27517f720a753f51c1dcb903f883) fix(cli): Cargo target dir detection on Android, closes [#5865](https://www.github.com/tauri-apps/tauri/pull/5865) ([#5932](https://www.github.com/tauri-apps/tauri/pull/5932)) on 2022-12-28
19
+
20
+ ## \[2.0.0-alpha.1]
21
+
22
+ - Fixes running on device using Xcode 14.
23
+ - [1e4a6758](https://www.github.com/tauri-apps/tauri/commit/1e4a675843c486bddc11292d09fb766e98758514) fix(cli): run on iOS device on Xcode 14 ([#5807](https://www.github.com/tauri-apps/tauri/pull/5807)) on 2022-12-12
24
+ - Improve local IP address detection with user selection.
25
+ - [76204b89](https://www.github.com/tauri-apps/tauri/commit/76204b893846a04552f8f8b87ad2c9b55e1b417f) feat(cli): improve local IP detection ([#5817](https://www.github.com/tauri-apps/tauri/pull/5817)) on 2022-12-12
26
+
3
27
  ## \[2.0.0-alpha.0]
4
28
 
5
29
  - Added `android build` command.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-alpha.0",
3
+ "version": "2.0.0-alpha.2",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -45,6 +45,9 @@
45
45
  "jest-transform-toml": "1.0.0",
46
46
  "prettier": "2.8.1"
47
47
  },
48
+ "resolutions": {
49
+ "json5": "2.2.3"
50
+ },
48
51
  "engines": {
49
52
  "node": ">= 10"
50
53
  },
@@ -64,14 +67,14 @@
64
67
  "format:check": "prettier --check ./package.json ./tauri.js"
65
68
  },
66
69
  "optionalDependencies": {
67
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.0",
68
- "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.0",
69
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.0",
70
- "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.0",
71
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.0",
72
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.0",
73
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.0",
74
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.0",
75
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.0"
70
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.2",
71
+ "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.2",
72
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.2",
73
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.2",
74
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.2",
75
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.2",
76
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.2",
77
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.2",
78
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.2"
76
79
  }
77
80
  }