@cortexql/ts2graphql
Version:
A TypeScrpt transpiler to GraphQL for your project
9 lines • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const child_process_1 = require("child_process");
const appRootDir = require("app-root-dir");
function exec(command, options) {
child_process_1.execSync(command, Object.assign({ stdio: 'inherit', cwd: appRootDir.get() }, options));
}
exports.exec = exec;
//# sourceMappingURL=exec.js.map