Skip to content

Commit 85d9a65

Browse files
committed
docs: update dependencies
1 parent f0ac63a commit 85d9a65

7 files changed

Lines changed: 202 additions & 181 deletions

File tree

docs/app/(home)/page.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default function HomePage() {
3232
background: `repeating-linear-gradient(to right, ${gridColor}, ${gridColor} 1px,transparent 1px,transparent 50px), repeating-linear-gradient(to bottom, ${gridColor}, ${gridColor} 1px,transparent 1px,transparent 50px)`,
3333
}}
3434
/>
35-
<main className="container relative max-w-[1100px] px-2 py-4 z-2 lg:py-8">
35+
<main className="container relative max-w-[1100px] mx-auto px-2 py-4 z-2 lg:py-8">
3636
<div
3737
style={{
3838
background:
@@ -312,7 +312,10 @@ function WhyInteractive(props: {
312312
download speed.
313313
</p>
314314
<div className="flex gap-2">
315-
<Link href="/docs/builder" className={cn(buttonVariants(), "not-prose")}>
315+
<Link
316+
href="/docs/builder"
317+
className={cn(buttonVariants(), "not-prose")}
318+
>
316319
Get started
317320
</Link>
318321
</div>

docs/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import "@/app/global.css";
2-
import { RootProvider } from "fumadocs-ui/provider";
2+
import { RootProvider } from "fumadocs-ui/provider/next";
33
import localFont from "next/font/local";
44
import Script from "next/script";
55
import { Toaster } from "@/components/ui/sonner";

docs/bun.lock

Lines changed: 157 additions & 154 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/lib/source.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import { docs } from 'fumadocs-mdx:collections/server';
12
import { type InferPageType, loader } from "fumadocs-core/source";
23
import { icons } from "lucide-react";
34
import { createElement } from "react";
4-
import { docs } from "@/.source";
55

66
// See https://fumadocs.vercel.app/docs/headless/source-api for more info
77
export const source = loader({

docs/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"scripts": {
66
"build": "next build",
7-
"dev": "next dev --turbo",
7+
"dev": "next dev",
88
"start": "next start",
99
"postinstall": "fumadocs-mdx",
1010
"lint": "biome check",
@@ -13,32 +13,32 @@
1313
"dependencies": {
1414
"@radix-ui/react-accordion": "^1.2.12",
1515
"@radix-ui/react-collapsible": "^1.1.12",
16-
"@radix-ui/react-label": "^2.1.7",
16+
"@radix-ui/react-label": "^2.1.8",
1717
"@radix-ui/react-switch": "^1.2.6",
1818
"@radix-ui/react-tabs": "^1.1.13",
1919
"class-variance-authority": "^0.7.1",
2020
"clsx": "^2.1.1",
21-
"fumadocs-core": "15.8.1",
22-
"fumadocs-mdx": "12.0.1",
23-
"fumadocs-ui": "15.8.1",
24-
"lucide-react": "^0.545.0",
25-
"next": "15.5.4",
21+
"fumadocs-core": "16.2.5",
22+
"fumadocs-mdx": "14.1.0",
23+
"fumadocs-ui": "16.2.5",
24+
"lucide-react": "^0.561.0",
25+
"next": "16.0.10",
2626
"next-themes": "^0.4.6",
27-
"react": "^19.1.1",
28-
"react-dom": "^19.1.1",
27+
"react": "^19.2.3",
28+
"react-dom": "^19.2.3",
2929
"sonner": "^2.0.7",
30-
"tailwind-merge": "^3.3.1"
30+
"tailwind-merge": "^3.4.0"
3131
},
3232
"devDependencies": {
33-
"@biomejs/biome": "2.2.6",
34-
"@tailwindcss/postcss": "^4.1.13",
33+
"@biomejs/biome": "2.3.8",
34+
"@tailwindcss/postcss": "^4.1.18",
3535
"@types/mdx": "^2.0.13",
36-
"@types/node": "24.5.2",
37-
"@types/react": "^19.1.14",
38-
"@types/react-dom": "^19.1.9",
36+
"@types/node": "25.0.2",
37+
"@types/react": "^19.2.7",
38+
"@types/react-dom": "^19.2.3",
3939
"postcss": "^8.5.6",
40-
"tailwindcss": "^4.1.13",
40+
"tailwindcss": "^4.1.18",
4141
"tw-animate-css": "^1.4.0",
42-
"typescript": "^5.9.2"
42+
"typescript": "^5.9.3"
4343
}
4444
}

docs/source.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
// You can customise Zod schemas for frontmatter and `meta.json` here
1010
// see https://fumadocs.dev/docs/mdx/collections
1111
export const docs = defineDocs({
12+
dir: "content/docs",
1213
docs: {
1314
schema: frontmatterSchema,
1415
postprocess: {

docs/tsconfig.json

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"target": "ESNext",
5-
"lib": ["dom", "dom.iterable", "esnext"],
5+
"lib": [
6+
"dom",
7+
"dom.iterable",
8+
"esnext"
9+
],
610
"allowJs": true,
711
"skipLibCheck": true,
812
"strict": true,
@@ -13,18 +17,28 @@
1317
"moduleResolution": "bundler",
1418
"resolveJsonModule": true,
1519
"isolatedModules": true,
16-
"jsx": "preserve",
20+
"jsx": "react-jsx",
1721
"incremental": true,
1822
"paths": {
19-
"@/.source": ["./.source/index.ts"],
20-
"@/*": ["./*"]
23+
"fumadocs-mdx:collections/*": [".source/*"],
24+
"@/*": [
25+
"./*"
26+
]
2127
},
2228
"plugins": [
2329
{
2430
"name": "next"
2531
}
2632
]
2733
},
28-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
29-
"exclude": ["node_modules"]
34+
"include": [
35+
"next-env.d.ts",
36+
"**/*.ts",
37+
"**/*.tsx",
38+
".next/types/**/*.ts",
39+
".next/dev/types/**/*.ts"
40+
],
41+
"exclude": [
42+
"node_modules"
43+
]
3044
}

0 commit comments

Comments
 (0)