ai-dev-diary
Version:
Intelligent development diary system for AI-assisted projects
25 lines • 1.03 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.configCommand = void 0;
const commander_1 = require("commander");
const chalk_1 = __importDefault(require("chalk"));
exports.configCommand = new commander_1.Command('config')
.description('Manage diary configuration');
exports.configCommand
.command('get <key>')
.description('Get configuration value')
.action(async (key) => {
console.log(chalk_1.default.blue(`Getting config: ${key}`));
console.log(chalk_1.default.yellow('Config management coming soon!'));
});
exports.configCommand
.command('set <key> <value>')
.description('Set configuration value')
.action(async (key, value) => {
console.log(chalk_1.default.blue(`Setting ${key} = ${value}`));
console.log(chalk_1.default.yellow('Config management coming soon!'));
});
//# sourceMappingURL=config.js.map