UNPKG

wxt

Version:

⚡ Next-gen Web Extension Framework

17 lines (16 loc) 354 B
import { relative } from "node:path"; import { wxt } from "../wxt.mjs"; export function createManualRunner() { return { async openBrowser() { wxt.logger.info( `Load "${relative( process.cwd(), wxt.config.outDir )}" as an unpacked extension manually` ); }, async closeBrowser() { } }; }