Files
wxt/packages/runner/dev.ts
T
Aaron b99da14799
📼 VHS / Create VHS (push) Waiting to run
feat(runner): Create new @wxt-dev/runner package (#1566)
2025-06-02 15:01:59 -05:00

17 lines
265 B
TypeScript

//
// USAGE:
// pnpm dev
// pnpm dev firefox-nightly
// pnpm dev <target>
//
import { run } from './src';
// Uncomment to enable debug logs
process.env.DEBUG = '@wxt-dev/runner';
await run({
extensionDir: 'demo-extension',
target: process.argv[2],
});