UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

15 lines (14 loc) 417 B
import { CommandService } from './CommandService'; import LintService from './LintService'; export default class BuildService { set cwd(cwd: string); get cwd(): string; private commandService; private lintService; constructor(commandService: CommandService, lintService: LintService); build(options?: { shouldFixLintFirst?: boolean; }): Promise<{ stdout: string; }>; }