mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-17 22:13:08 +00:00
* Changes from fix/memory-and-context-mobile-friendly * fix: Improve file extension detection and add path traversal protection * refactor: Extract file extension utilities and add path traversal guards Code review improvements: - Extract isMarkdownFilename and isImageFilename to shared image-utils.ts - Remove duplicated code from context-view.tsx and memory-view.tsx - Add path traversal guard for context fixture utilities (matching memory) - Add 7 new tests for context fixture path traversal protection - Total 61 tests pass Addresses code review feedback from PR #813 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test: Add e2e tests for profiles crud and board background persistence * Update apps/ui/playwright.config.ts Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * fix: Add robust test navigation handling and file filtering * fix: Format NODE_OPTIONS configuration on single line * test: Update profiles and board background persistence tests * test: Replace iPhone 13 Pro with Pixel 5 for mobile test consistency --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
51 lines
1.3 KiB
TypeScript
51 lines
1.3 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/memory';
|
|
export * from './views/spec-editor';
|
|
export * from './views/agent';
|
|
export * from './views/settings';
|
|
export * from './views/setup';
|
|
export * from './views/profiles';
|
|
|
|
// 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';
|