UNPKG

@roots/bud

Version:

Configurable, extensible build tools for modern single and multi-page web applications

7 lines (6 loc) 251 B
import type { Context } from '@roots/bud-framework/context'; export type Options = { extensions?: Array<string>; } & Omit<Partial<Context>, `extensions`>; export default function make(options?: Options): Promise<Context>; export type { Context };