mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 10:16:49 +00:00
- 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
27 lines
734 B
TypeScript
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';
|