UNPKG

kubricate

Version:

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

10 lines 222 B
// execa-executor.ts import { execa } from 'execa'; export class ExecaExecutor { async run(command, args) { await execa(command, args, { stdio: 'inherit' }); } } //# sourceMappingURL=execa-executor.js.map