UNPKG

@roots/bud

Version:

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

24 lines (23 loc) 563 B
import type mode from '@roots/bud/cli/flags/mode'; import BuildCommand from '@roots/bud/cli/commands/build'; /** * `bud build development` command */ export default class BuildDevelopmentCommand extends BuildCommand { /** * {@link Command.paths} */ static paths: string[][]; /** * {@link Command.usage} */ static usage: import("clipanion").Usage; mode: typeof mode; hot: boolean; proxy: string; browser: string | boolean; indicator: boolean; overlay: boolean; port: number; reload: boolean; }