| 61 | * Build options passed from CLI to rspack configuration. |
| 62 | */ |
| 63 | export interface BuildOptions { |
| 64 | /** |
| 65 | * Whether to run in watch mode. |
| 66 | */ |
| 67 | isWatchMode?: boolean; |
| 68 | |
| 69 | /** |
| 70 | * Whether to create zip archives after build. |
| 71 | * Defaults to false, use --zip flag to enable. |
| 72 | */ |
| 73 | zip?: boolean; |
| 74 | } |
| 75 | |
| 76 | export const BROWSERS_CONF: Record<Exclude<Browser, Browser.ChromeCrx>, BrowserConfig> = { |
| 77 | [Browser.Chrome]: { |
nothing calls this directly
no outgoing calls
no test coverage detected