ai-dev-diary
Version:
Intelligent development diary system for AI-assisted projects
16 lines • 738 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.reportCommand = void 0;
const commander_1 = require("commander");
const chalk_1 = __importDefault(require("chalk"));
exports.reportCommand = new commander_1.Command('report')
.description('Generate analytics reports')
.argument('[type]', 'Report type (weekly, insights, mistakes)', 'weekly')
.action(async (type) => {
console.log(chalk_1.default.blue(`Generating ${type} report...`));
console.log(chalk_1.default.yellow('Report generation coming soon!'));
});
//# sourceMappingURL=report.js.map