@matatbread/typia
Version:
Superfast runtime validators with only one line
13 lines (10 loc) • 332 B
JavaScript
import cp from 'child_process';
var CommandExecutor;
(function (CommandExecutor) {
CommandExecutor.run = (str) => {
console.log(`\n$ ${str}`);
cp.execSync(str, { stdio: "inherit" });
};
})(CommandExecutor || (CommandExecutor = {}));
export { CommandExecutor };
//# sourceMappingURL=CommandExecutor.mjs.map