Skip to main content
Module

x/webview/scripts/build.ts

🌐 Deno bindings for webview, a tiny library for creating web-based desktop GUIs
Go to Latest
File
import { requires, run } from "./_util.ts";
export async function build(mshtml: boolean = Deno.args.includes("mshtml")) { await requires("cargo");
const command = ["cargo", "build", "--release"];
if (mshtml) { command.push("--no-default-features"); }
await run("building rust", command);}
if (import.meta.main) { await build();}