Files
ccs/src/utils/index.ts
T
kaitranntt e1f135a93a refactor(utils): extract formatRelativeTime to utils/time.ts
- create utils/time.ts for centralized time formatting

- remove duplicate from auth/commands/types.ts

- re-export for backward compatibility

- export from utils/index.ts
2025-12-19 15:39:40 -05:00

27 lines
734 B
TypeScript

/**
* Utils module barrel export
* Selective exports of commonly used utilities
*/
// UI utilities (main export)
export * from './ui';
// Time utilities
export * from './time';
// Shell execution
export { execClaude, escapeShellArg } from './shell-executor';
// Claude detection and management
export { getClaudeCliInfo } from './claude-detector';
export { ClaudeSymlinkManager } from './claude-symlink-manager';
export { ClaudeDirInstaller } from './claude-dir-installer';
// Utilities
export { ProgressIndicator } from './progress-indicator';
export { getVersion } from './version';
export { ErrorManager } from './error-manager';
// Platform utilities
export { default as getPlatformCommands } from './platform-commands';