optimize imports
This commit is contained in:
@@ -13,10 +13,7 @@ import { log } from './utils.js';
|
||||
import { setupMCPConfiguration } from '../../src/utils/mcp-utils.js';
|
||||
|
||||
// --- Centralized Brand Helpers ---
|
||||
import * as clineProfile from '../profiles/cline.js';
|
||||
import * as cursorProfile from '../profiles/cursor.js';
|
||||
import * as rooProfile from '../profiles/roo.js';
|
||||
import * as windsurfProfile from '../profiles/windsurf.js';
|
||||
import { clineProfile, cursorProfile, rooProfile, windsurfProfile } from '../profiles/index.js';
|
||||
|
||||
export const BRAND_PROFILES = {
|
||||
cline: clineProfile,
|
||||
|
||||
5
scripts/profiles/index.js
Normal file
5
scripts/profiles/index.js
Normal file
@@ -0,0 +1,5 @@
|
||||
// Profile exports for centralized importing
|
||||
export * as clineProfile from './cline.js';
|
||||
export * as cursorProfile from './cursor.js';
|
||||
export * as rooProfile from './roo.js';
|
||||
export * as windsurfProfile from './windsurf.js';
|
||||
Reference in New Issue
Block a user