mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 20:03:37 +00:00
- Deleted the AI profile management feature, including all associated views, hooks, and types. - Updated settings and navigation components to remove references to AI profiles. - Adjusted local storage and settings synchronization logic to reflect the removal of AI profiles. - Cleaned up tests and utility functions that were dependent on the AI profile feature. These changes streamline the application by eliminating unused functionality, improving maintainability and reducing complexity.
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
// Re-export all utilities from their respective modules
|
|
|
|
// Core utilities
|
|
export * from './core/elements';
|
|
export * from './core/interactions';
|
|
export * from './core/waiting';
|
|
export * from './core/constants';
|
|
|
|
// API utilities
|
|
export * from './api/client';
|
|
|
|
// Git utilities
|
|
export * from './git/worktree';
|
|
|
|
// Project utilities
|
|
export * from './project/setup';
|
|
export * from './project/fixtures';
|
|
|
|
// Navigation utilities
|
|
export * from './navigation/views';
|
|
|
|
// View-specific utilities
|
|
export * from './views/board';
|
|
export * from './views/context';
|
|
export * from './views/spec-editor';
|
|
export * from './views/agent';
|
|
export * from './views/settings';
|
|
export * from './views/setup';
|
|
|
|
// Component utilities
|
|
export * from './components/dialogs';
|
|
export * from './components/toasts';
|
|
export * from './components/modals';
|
|
export * from './components/autocomplete';
|
|
|
|
// Feature utilities
|
|
export * from './features/kanban';
|
|
export * from './features/timers';
|
|
export * from './features/skip-tests';
|
|
export * from './features/waiting-approval';
|
|
|
|
// Helper utilities
|
|
export * from './helpers/scroll';
|
|
export * from './helpers/log-viewer';
|
|
export * from './helpers/concurrency';
|
|
|
|
// File utilities
|
|
export * from './files/drag-drop';
|