Files
wxt/src/core/build.ts
T

21 lines
708 B
TypeScript

import { BuildOutput, InlineConfig } from '~/types';
import { getInternalConfig, internalBuild } from './utils/building';
/**
* Bundles the extension for production. Returns a promise of the build result. Discovers the `wxt.config.ts` file in
* the root directory, and merges that config with what is passed in.
*
* @example
* // Use config from `wxt.config.ts`
* const res = await build()
*
* // or override config `from wxt.config.ts`
* const res = await build({
* // Override config...
* })
*/
export async function build(config?: InlineConfig): Promise<BuildOutput> {
const internalConfig = await getInternalConfig(config ?? {}, 'build');
return await internalBuild(internalConfig);
}