@incidental/project-templates
Version:
Claude Code template library for JavaScript projects with framework auto-detection
18 lines (13 loc) • 526 B
JavaScript
import { logger } from '../utils/logger.js';
export async function updateCommand(_options) {
logger.header('🔄 Update Templates');
// TODO: Implement update logic
// This would:
// 1. Check for newer versions of installed templates
// 2. Prompt user to confirm updates
// 3. Backup existing templates
// 4. Install updated versions
logger.warning('Update functionality coming soon!');
logger.info('For now, you can reinstall templates manually using the add commands');
}
export default updateCommand;