cursor, correted roo, and windsurf rules readded and will update on project build

This commit is contained in:
Brian Madison
2025-06-14 16:38:37 -05:00
parent 442166f2f4
commit 2cbbf61d92
48 changed files with 5109 additions and 2056 deletions

View File

@@ -3,6 +3,7 @@
const { Command } = require('commander');
const WebBuilder = require('./builders/web-builder');
const V3ToV4Upgrader = require('./upgraders/v3-to-v4-upgrader');
const IdeSetup = require('./installer/lib/ide-setup');
const path = require('path');
const program = new Command();
@@ -39,6 +40,21 @@ program
await builder.buildTeams();
}
// Generate IDE configuration folders
console.log('Generating IDE configuration folders...');
const installDir = process.cwd();
// Generate configurations for all supported IDEs
const ides = ['cursor', 'claude-code', 'windsurf', 'roo'];
for (const ide of ides) {
try {
console.log(`Setting up ${ide} integration...`);
await IdeSetup.setup(ide, installDir);
} catch (error) {
console.warn(`Warning: Failed to setup ${ide}:`, error.message);
}
}
console.log('Build completed successfully!');
} catch (error) {
console.error('Build failed:', error.message);