@tauri-apps/cli 1.2.1 → 1.2.3

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 +14 -0
  2. package/package.json +16 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.2.3]
4
+
5
+ - Pin `ignore` to `=0.4.18`.
6
+ - [adcb082b](https://www.github.com/tauri-apps/tauri/commit/adcb082b1651ecb2a6208b093e12f4185aa3fc98) chore(deps): pin `ignore` to =0.4.18 on 2023-01-17
7
+
8
+ ## \[1.2.2]
9
+
10
+ - Detect SvelteKit and Vite for the init and info commands.
11
+ - [9d872ab8](https://www.github.com/tauri-apps/tauri/commit/9d872ab8728b1b121909af434adcd5936e5afb7d) feat(cli): detect SvelteKit and Vite ([#5742](https://www.github.com/tauri-apps/tauri/pull/5742)) on 2022-12-02
12
+ - Detect SolidJS and SolidStart for the init and info commands.
13
+ - [9e7ce0a8](https://www.github.com/tauri-apps/tauri/commit/9e7ce0a8eef4bf3536645976e3e09162fbf772ab) feat(cli): detect SolidJS and SolidStart ([#5758](https://www.github.com/tauri-apps/tauri/pull/5758)) on 2022-12-08
14
+ - Use older icon types to work around a macOS bug resulting in corrupted 16x16px and 32x32px icons in bundled apps.
15
+ - [2d545eff](https://www.github.com/tauri-apps/tauri/commit/2d545eff58734ec70f23f11a429d35435cdf090e) fix(cli): corrupted icons in bundled macOS icons ([#5698](https://www.github.com/tauri-apps/tauri/pull/5698)) on 2022-11-28
16
+
3
17
  ## \[1.2.1]
4
18
 
5
19
  - Fixes injection of Cargo features defined in the configuration file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -37,13 +37,16 @@
37
37
  }
38
38
  },
39
39
  "devDependencies": {
40
- "@napi-rs/cli": "2.12.0",
40
+ "@napi-rs/cli": "2.13.0",
41
41
  "cross-env": "7.0.3",
42
42
  "cross-spawn": "7.0.3",
43
- "fs-extra": "10.1.0",
43
+ "fs-extra": "11.1.0",
44
44
  "jest": "29.3.1",
45
45
  "jest-transform-toml": "1.0.0",
46
- "prettier": "2.7.1"
46
+ "prettier": "2.8.1"
47
+ },
48
+ "resolutions": {
49
+ "json5": "2.2.3"
47
50
  },
48
51
  "engines": {
49
52
  "node": ">= 10"
@@ -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": "1.2.1",
68
- "@tauri-apps/cli-darwin-x64": "1.2.1",
69
- "@tauri-apps/cli-linux-x64-gnu": "1.2.1",
70
- "@tauri-apps/cli-darwin-arm64": "1.2.1",
71
- "@tauri-apps/cli-linux-arm64-gnu": "1.2.1",
72
- "@tauri-apps/cli-linux-arm64-musl": "1.2.1",
73
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.2.1",
74
- "@tauri-apps/cli-linux-x64-musl": "1.2.1",
75
- "@tauri-apps/cli-win32-ia32-msvc": "1.2.1"
70
+ "@tauri-apps/cli-win32-x64-msvc": "1.2.3",
71
+ "@tauri-apps/cli-darwin-x64": "1.2.3",
72
+ "@tauri-apps/cli-linux-x64-gnu": "1.2.3",
73
+ "@tauri-apps/cli-darwin-arm64": "1.2.3",
74
+ "@tauri-apps/cli-linux-arm64-gnu": "1.2.3",
75
+ "@tauri-apps/cli-linux-arm64-musl": "1.2.3",
76
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.2.3",
77
+ "@tauri-apps/cli-linux-x64-musl": "1.2.3",
78
+ "@tauri-apps/cli-win32-ia32-msvc": "1.2.3"
76
79
  }
77
80
  }