Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,12 @@
"@sketchi/backend": "workspace:*",
"@sketchi/env": "workspace:*",
"@sketchi/shared": "workspace:*",
"@tanstack/react-form": "^1.28.3",
"@vercel/analytics": "^1.6.1",
"@workos-inc/authkit-nextjs": "^2.15.0",
"babel-plugin-react-compiler": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "catalog:",
"dotenv": "catalog:",
"fractional-indexing": "^3.2.0",
"jszip": "^3.10.1",
"lucide-react": "^0.575.0",
Expand All @@ -44,8 +42,7 @@
"devDependencies": {
"@sketchi/config": "workspace:*",
"@tailwindcss/postcss": "^4.2.0",
"@types/jszip": "^3.4.1",
"@types/node": "^25.3.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.2.0",
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/components/diagram-studio/diagram-list-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,9 @@ export function DiagramListItem({
Created {createdLabel}
</span>
) : null}
{item.latestSceneVersion !== null ? (
{item.latestSceneVersion === null ? null : (
<span>v{item.latestSceneVersion}</span>
) : null}
)}
<span>{originLabel}</span>
</div>

Expand Down
9 changes: 0 additions & 9 deletions apps/web/src/components/loader.tsx

This file was deleted.

8 changes: 4 additions & 4 deletions apps/web/src/components/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ function CardFooter({ className, ...props }: React.ComponentProps<"div">) {

export {
Card,
CardHeader,
CardFooter,
CardTitle,
CardAction,
CardDescription,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
};
10 changes: 5 additions & 5 deletions apps/web/src/components/ui/dropdown-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,18 +245,18 @@ function DropdownMenuShortcut({

export {
DropdownMenu,
DropdownMenuPortal,
DropdownMenuTrigger,
DropdownMenuCheckboxItem,
DropdownMenuContent,
DropdownMenuGroup,
DropdownMenuLabel,
DropdownMenuItem,
DropdownMenuCheckboxItem,
DropdownMenuLabel,
DropdownMenuPortal,
DropdownMenuRadioGroup,
DropdownMenuRadioItem,
DropdownMenuSeparator,
DropdownMenuShortcut,
DropdownMenuSub,
DropdownMenuSubTrigger,
DropdownMenuSubContent,
DropdownMenuSubTrigger,
DropdownMenuTrigger,
};
16 changes: 0 additions & 16 deletions apps/web/src/components/ui/skeleton.tsx

This file was deleted.

98 changes: 39 additions & 59 deletions bun.lock

Large diffs are not rendered by default.

15 changes: 5 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"tests/*"
],
"catalog": {
"dotenv": "^17.2.4",
"dotenv": "^17.4.2",
"zod": "^4.1.13",
"typescript": "^5",
"convex": "^1.31.7"
Expand All @@ -25,17 +25,12 @@
"dev:setup": "turbo -F @sketchi/backend dev:setup",
"seed:palantir-icons": "bun --cwd packages/backend run seed:palantir-icons"
},
"dependencies": {
"@sketchi/env": "workspace:*",
"dotenv": "^17.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@biomejs/biome": "2.4.12",
"@sketchi/config": "workspace:*",
"@types/bun": "^1.3.9",
"@types/node": "^25.3.0",
"turbo": "^2.8.10",
"@types/bun": "^1.3.12",
"@types/node": "^25.6.0",
"turbo": "^2.9.6",
"typescript": "^5.9.3",
"ultracite": "7.2.3"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/convex/lib/excalidrawShareLinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ async function fetchLinkSharing(sceneId: string): Promise<number | undefined> {
fields?: { linkSharing?: { integerValue?: string } };
};
const raw = json.fields?.linkSharing?.integerValue;
const value = raw != null ? Number(raw) : Number.NaN;
const value = raw == null ? Number.NaN : Number(raw);
return Number.isFinite(value) ? value : undefined;
} catch {
return undefined;
Expand Down
81 changes: 0 additions & 81 deletions packages/backend/lib/agents/diagram-generator.ts

This file was deleted.

108 changes: 0 additions & 108 deletions packages/backend/lib/json-repair.ts

This file was deleted.

51 changes: 0 additions & 51 deletions packages/backend/lib/output.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@sketchi/config": "workspace:*",
"@types/node": "^25.3.0",
"@types/node": "^25.6.0",
"@types/pako": "^2.0.4",
"convex-test": "^0.0.41",
"typescript": "catalog:",
Expand Down
Loading
Loading