@roots/bud
Version:
Configurable, extensible build tools for modern single and multi-page web applications
17 lines (16 loc) • 427 B
TypeScript
import type mode from '@roots/bud/cli/flags/mode';
import BuildCommand from '@roots/bud/cli/commands/build';
/**
* `bud build production` command
*/
export default class BuildProductionCommand extends BuildCommand {
/**
* {@link Command.paths}
*/
static paths: string[][];
/**
* {@link Command.usage}
*/
static usage: import("@roots/bud-support/clipanion").Usage;
mode: typeof mode;
}