* Update useDevServer to use tanstack (vibe-kanban a5e7cb20) We are migrating the frontend to use Tanstack query. We should make radical changes in order to improve readability and performance. See an example in frontend/src/hooks/useRebase.ts Please plan how to modernise the frontend/src/hooks/useDevServer.ts hook * Deprecate useExecutionProcesses → Replace with useAttemptExecution (vibe-kanban 5123ff1e)
10 lines
435 B
TypeScript
10 lines
435 B
TypeScript
export { useBranchStatus } from './useBranchStatus';
|
|
export { useAttemptExecution } from './useAttemptExecution';
|
|
export { useOpenInEditor } from './useOpenInEditor';
|
|
export { useDevServer } from './useDevServer';
|
|
export { useRebase } from './useRebase';
|
|
export { useCreatePR } from './useCreatePR';
|
|
export { useMerge } from './useMerge';
|
|
export { usePush } from './usePush';
|
|
export { useProjectBranches } from './useProjectBranches';
|