File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " create-tauri-app " : patch
3
+ " create-tauri-app-js " : patch
4
+ ---
5
+ Fixed false warning about missing dependencies, Deno and Bun.
Original file line number Diff line number Diff line change @@ -204,13 +204,13 @@ pub fn print_missing_deps(
204
204
name : "Deno" ,
205
205
instruction : format ! ( "Visit {BLUE}{BOLD}https://deno.land/{RESET}" ) ,
206
206
exists : & || is_cli_installed ( "deno" , "-v" ) ,
207
- skip : pkg_manager = = PackageManager :: Deno ,
207
+ skip : pkg_manager ! = PackageManager :: Deno ,
208
208
} ,
209
209
Dep {
210
210
name : "Bun" ,
211
211
instruction : format ! ( "Visit {BLUE}{BOLD}https://bun.sh/{RESET}" ) ,
212
212
exists : & || is_cli_installed ( "bun" , "-v" ) ,
213
- skip : pkg_manager = = PackageManager :: Bun ,
213
+ skip : pkg_manager ! = PackageManager :: Bun ,
214
214
} ,
215
215
#[ cfg( windows) ]
216
216
Dep {
You can’t perform that action at this time.
0 commit comments