refakts
Version:
TypeScript refactoring tool built for AI coding agents to perform precise refactoring operations via command line instead of requiring complete code regeneration.
12 lines • 510 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getIncompleteRefactorings = getIncompleteRefactorings;
const command_registry_1 = require("./command-registry");
function getIncompleteRefactorings() {
const commandRegistry = new command_registry_1.CommandRegistry();
const commands = commandRegistry.getAllCommands();
return commands
.filter(command => !command.complete)
.map(command => command.name);
}
//# sourceMappingURL=cli-generator.js.map