UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

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