UNPKG

@roots/bud

Version:

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

15 lines (14 loc) 375 B
/** * bud.js * * @see https://bud.js.org * @see https://github.com/roots/bud */ import { Bud } from '@roots/bud/bud'; interface Config { (bud: Bud): Promise<unknown | void>; } export { Extension } from '@roots/bud-framework'; export { Bud, type Config }; export { factory } from '@roots/bud/factory'; export { get, instance as bud, set } from '@roots/bud/instance';