@quadnix/octo-build
Version:
Octo-Build is a CLI tool to build Octo projects.
15 lines (14 loc) • 404 B
TypeScript
import type { ArgumentsCamelCase, Argv } from 'yargs';
export declare const buildCommand: {
builder: (yargs: Argv) => Argv;
command: string;
describe: string;
handler: (argv: ArgumentsCamelCase<{
buildFilePath: string;
sourcePath: string;
concurrency: number;
dryRun: boolean;
logsDir: string;
timeout: number;
}>) => Promise<void>;
};