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(
204204 name : "Deno" ,
205205 instruction : format ! ( "Visit {BLUE}{BOLD}https://deno.land/{RESET}" ) ,
206206 exists : & || is_cli_installed ( "deno" , "-v" ) ,
207- skip : pkg_manager = = PackageManager :: Deno ,
207+ skip : pkg_manager ! = PackageManager :: Deno ,
208208 } ,
209209 Dep {
210210 name : "Bun" ,
211211 instruction : format ! ( "Visit {BLUE}{BOLD}https://bun.sh/{RESET}" ) ,
212212 exists : & || is_cli_installed ( "bun" , "-v" ) ,
213- skip : pkg_manager = = PackageManager :: Bun ,
213+ skip : pkg_manager ! = PackageManager :: Bun ,
214214 } ,
215215 #[ cfg( windows) ]
216216 Dep {
You can’t perform that action at this time.
0 commit comments