kubricate
Version:
A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.
18 lines (16 loc) • 392 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ExecaExecutor = void 0;
var _execa = /*#__PURE__*/require("execa");
// execa-executor.ts
class ExecaExecutor {
async run(command, args) {
await (0, _execa.execa)(command, args, {
stdio: 'inherit'
});
}
}
exports.ExecaExecutor = ExecaExecutor;
//# sourceMappingURL=execa-executor.js.map