UNPKG

@quadnix/octo-build

Version:

Octo-Build is a CLI tool to build Octo projects.

17 lines (16 loc) 301 B
export interface IBuildConfiguration { dist: string; env: { [key: string]: string; }; jobs: { [key: string]: IJob; }; } export interface IJob { command: string; dependsOn: string[]; onError: 'ignore' | 'throw'; retry: number; timeout: number; }