UNPKG

kubricate

Version:

A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.

9 lines (7 loc) 204 B
// execa-executor.ts import { execa } from 'execa'; export class ExecaExecutor { async run(command: string, args: string[]): Promise<void> { await execa(command, args, { stdio: 'inherit' }); } }