faf-cli
Version:
😽 TURBO-CAT: The Rapid Catalytic Converter • Project DNA ✨ for ANY AI • Fully Integrated with React, Next.js, Svelte, TypeScript, Vite & n8n • FREE FOREVER • 10,000+ developers • Championship Edition
25 lines • 921 B
JavaScript
;
/**
* 🏁 FIX-ONCE: COMMANDER ABSTRACTION
* Drop-in replacement for commander using native parser
*
* DC VICTORY #3: Only ONE place to change!
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Command = exports.program = void 0;
// Toggle this to switch between commander and native
const USE_NATIVE = true;
// 🏎️ NATIVE PARSER - ZERO DEPENDENCIES!
var native_cli_parser_1 = require("../utils/native-cli-parser");
Object.defineProperty(exports, "program", { enumerable: true, get: function () { return native_cli_parser_1.program; } });
Object.defineProperty(exports, "Command", { enumerable: true, get: function () { return native_cli_parser_1.Command; } });
/**
* DC STATUS:
* ✅ Single source of truth
* ✅ Easy rollback if needed
* ✅ Zero changes to rest of codebase
* ✅ Type-safe
*
* COMMANDER IS DEFEATED! 💪
*/
//# sourceMappingURL=commander.js.map