Update for Deno-2.0,
In the /deno-webui/src/utils.ts runCommand function, line# 30:
Deno.run is deprecated and Deno recommends using Deno.Command instead.
Note: This symbol is soft-removed as of Deno 2.
Its types have been removed but its implementation remains in order to reduce breaking changes.
You could ignore "property does not exist" TypeScript errors by using the //@ts-ignore directive,
In my opinion, it would be best to update to using new Deno.Command().
Update for Deno-2.0, In the /deno-webui/src/utils.ts runCommand function, line# 30: Deno.run is deprecated and Deno recommends using Deno.Command instead.
Note: This symbol is soft-removed as of Deno 2. Its types have been removed but its implementation remains in order to reduce breaking changes. You could ignore "property does not exist" TypeScript errors by using the //@ts-ignore directive, In my opinion, it would be best to update to using new Deno.Command().