@jjdenhertog/ai-driven-development
Version:
AI-driven development workflow with learning capabilities for Claude
14 lines • 405 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.checkGitAuth = checkGitAuth;
const node_child_process_1 = require("node:child_process");
function checkGitAuth() {
try {
(0, node_child_process_1.execSync)('gh auth status', { stdio: 'pipe' });
return true;
}
catch (_a) {
return false;
}
}
//# sourceMappingURL=checkGitAuth.js.map