@tauri-apps/cli 1.6.2 → 1.6.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.
- package/CHANGELOG.md +10 -0
- package/package.json +14 -11
- package/tauri.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.6.3]
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
- [`343b11d7c`](https://www.github.com/tauri-apps/tauri/commit/343b11d7c775fc01aa6ff8ab517fd1edd7e483ca) ([#11305](https://www.github.com/tauri-apps/tauri/pull/11305) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add Deno support in tauri-cli operations.
|
|
8
|
+
|
|
9
|
+
### Dependencies
|
|
10
|
+
|
|
11
|
+
- Upgraded to `tauri-cli@1.6.3`
|
|
12
|
+
|
|
3
13
|
## \[1.6.2]
|
|
4
14
|
|
|
5
15
|
### Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -68,16 +68,19 @@
|
|
|
68
68
|
"format": "prettier --write ./package.json ./tauri.js",
|
|
69
69
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
70
70
|
},
|
|
71
|
+
"dependencies": {
|
|
72
|
+
"semver": ">=7.5.2"
|
|
73
|
+
},
|
|
71
74
|
"optionalDependencies": {
|
|
72
|
-
"@tauri-apps/cli-win32-x64-msvc": "1.6.
|
|
73
|
-
"@tauri-apps/cli-darwin-x64": "1.6.
|
|
74
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.6.
|
|
75
|
-
"@tauri-apps/cli-darwin-arm64": "1.6.
|
|
76
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.6.
|
|
77
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.6.
|
|
78
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.6.
|
|
79
|
-
"@tauri-apps/cli-linux-x64-musl": "1.6.
|
|
80
|
-
"@tauri-apps/cli-win32-ia32-msvc": "1.6.
|
|
81
|
-
"@tauri-apps/cli-win32-arm64-msvc": "1.6.
|
|
75
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.6.3",
|
|
76
|
+
"@tauri-apps/cli-darwin-x64": "1.6.3",
|
|
77
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.6.3",
|
|
78
|
+
"@tauri-apps/cli-darwin-arm64": "1.6.3",
|
|
79
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.6.3",
|
|
80
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.6.3",
|
|
81
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.6.3",
|
|
82
|
+
"@tauri-apps/cli-linux-x64-musl": "1.6.3",
|
|
83
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.6.3",
|
|
84
|
+
"@tauri-apps/cli-win32-arm64-msvc": "1.6.3"
|
|
82
85
|
}
|
|
83
86
|
}
|
package/tauri.js
CHANGED
|
@@ -14,9 +14,9 @@ const binStem = path.parse(bin).name.toLowerCase()
|
|
|
14
14
|
// can successfully detect what command likely started the execution.
|
|
15
15
|
let binName
|
|
16
16
|
|
|
17
|
-
// deno run -A
|
|
18
|
-
if (
|
|
19
|
-
binName =
|
|
17
|
+
// deno run -A npm:@tauri-apps/cli or deno task tauri
|
|
18
|
+
if (globalThis.navigator?.userAgent?.includes('Deno')) {
|
|
19
|
+
binName = bin
|
|
20
20
|
}
|
|
21
21
|
// Even if started by a package manager, the binary will be NodeJS.
|
|
22
22
|
// Some distribution still use "nodejs" as the binary name.
|