webview / webview_deno

🌐 Deno bindings for webview, a tiny library for creating web-based desktop GUIs
https://deno.land/x/webview
MIT License
1.4k stars 72 forks source link

fix: build script for deno 1.25.0 #136

Closed lukas-runge closed 2 years ago

lukas-runge commented 2 years ago

Hey folks,

after #135 has been merged into main the webview build failed as the Deno.spawn() api changed. The interface Deno.SpawnOutput now extends Deno.ChildStatus instead of composing it. This pr should account for those breaking api changes and thus make the webview build work again.

Kind regards @lukas-runge