UNPKG

piral-cli

Version:

The standard CLI for creating and building a Piral instance or a Pilet.

25 lines (22 loc) 742 B
import { fail, log, logDone } from './log'; import { RuleContext, Rule } from '../types'; export function ruleSummary(errors: Array<string>, warnings: Array<string>) { if (errors.length > 0) { fail('validationFailed_0080', errors.length); } else if (warnings.length > 0) { log('validationWarned_0081', warnings.length); } else { logDone('Validation successful. No errors or warnings.'); } } export async function runRules<T extends RuleContext>( rules: Array<Rule<T>>, context: T, configurations: Record<string, any> = {}, ) { for (const rule of rules) { log('generalDebug_0003', `Running rule "${rule?.name}" ...`); const options = configurations[rule.name]; await rule.run(context, options); } }