- Added support for a new worker in the team file system to list teams, improving performance and reliability in team management. - Introduced event loop lag monitoring in various IPC handlers to track and log slow operations, enhancing observability. - Implemented caching for CLI installation status to reduce redundant calls and improve responsiveness. - Updated project and team data services to include total session counts, optimizing data handling and performance. - Enhanced error handling and logging across multiple services to provide clearer insights into performance issues and failures. Made-with: Cursor
3 lines
112 B
TypeScript
3 lines
112 B
TypeScript
export function yieldToEventLoop(): Promise<void> {
|
|
return new Promise((resolve) => setImmediate(resolve));
|
|
}
|