Implement Vibe Kanban Web Companion (#868)

* add companion

* bump companion version

* update package

* update package

* cleanup

* cleanup
This commit is contained in:
Louis Knight-Webb
2025-09-26 16:16:55 +01:00
committed by GitHub
parent 4a40387660
commit e3727e249d
2 changed files with 3 additions and 0 deletions

View File

@@ -56,6 +56,7 @@
"rfc6902": "^5.1.2",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"vibe-kanban-web-companion": "^0.0.4",
"zustand": "^4.5.4"
},
"devDependencies": {

View File

@@ -3,6 +3,7 @@ import ReactDOM from 'react-dom/client';
import App from './App.tsx';
import './styles/index.css';
import { ClickToComponent } from 'click-to-react-component';
import { VibeKanbanWebCompanion } from 'vibe-kanban-web-companion';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import * as Sentry from '@sentry/react';
import NiceModal from '@ebay/nice-modal-react';
@@ -91,6 +92,7 @@ ReactDOM.createRoot(document.getElementById('root')!).render(
<QueryClientProvider client={queryClient}>
<Sentry.ErrorBoundary fallback={<p>An error has occurred</p>} showDialog>
<ClickToComponent />
<VibeKanbanWebCompanion />
<App />
{/* <ReactQueryDevtools initialIsOpen={false} /> */}
</Sentry.ErrorBoundary>