4d5eb28cb4
Co-authored-by: Okinea Dev <hi@okinea.dev>
17 lines
274 B
TypeScript
17 lines
274 B
TypeScript
//
|
|
// USAGE:
|
|
// bun run dev
|
|
// bun run dev firefox-nightly
|
|
// bun run 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],
|
|
});
|