We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5a53fd commit 80e0aa0Copy full SHA for 80e0aa0
.changes/bug_deno-bun_missing.md
@@ -0,0 +1,5 @@
1
+---
2
+"create-tauri-app": patch
3
+"create-tauri-app-js": patch
4
5
+Fixed false warning about missing dependencies, Deno and Bun.
src/deps.rs
@@ -204,13 +204,13 @@ pub fn print_missing_deps(
204
name: "Deno",
205
instruction: format!("Visit {BLUE}{BOLD}https://deno.land/{RESET}"),
206
exists: &|| is_cli_installed("deno", "-v"),
207
- skip: pkg_manager == PackageManager::Deno,
+ skip: pkg_manager != PackageManager::Deno,
208
},
209
Dep {
210
name: "Bun",
211
instruction: format!("Visit {BLUE}{BOLD}https://bun.sh/{RESET}"),
212
exists: &|| is_cli_installed("bun", "-v"),
213
- skip: pkg_manager == PackageManager::Bun,
+ skip: pkg_manager != PackageManager::Bun,
214
215
#[cfg(windows)]
216
0 commit comments