Skip to content

Commit 3cd27fd

Browse files
committed
chore: update major dependencies
1 parent feb5922 commit 3cd27fd

File tree

3 files changed

+823
-884
lines changed

3 files changed

+823
-884
lines changed

app/globals.css

Lines changed: 44 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,50 @@
77

88
@custom-variant dark (&:is(.dark *));
99

10-
@theme {
10+
/* @theme {
1111
--font-sans: var(--font-geist-sans);
1212
--font-mono: var(--font-geist-mono);
13-
}
13+
} */
1414

15-
* {
16-
scrollbar-width: thin;
17-
scrollbar-color: var(--border) transparent;
15+
@theme inline {
16+
--color-background: var(--background);
17+
--color-foreground: var(--foreground);
18+
--color-card: var(--card);
19+
--color-card-foreground: var(--card-foreground);
20+
--color-popover: var(--popover);
21+
--color-popover-foreground: var(--popover-foreground);
22+
--color-primary: var(--primary);
23+
--color-primary-foreground: var(--primary-foreground);
24+
--color-secondary: var(--secondary);
25+
--color-secondary-foreground: var(--secondary-foreground);
26+
--color-muted: var(--muted);
27+
--color-muted-foreground: var(--muted-foreground);
28+
--color-accent: var(--accent);
29+
--color-accent-foreground: var(--accent-foreground);
30+
--color-destructive: var(--destructive);
31+
--color-destructive-foreground: var(--destructive-foreground);
32+
--color-border: var(--border);
33+
--color-input: var(--input);
34+
--color-ring: var(--ring);
35+
--color-chart-1: var(--chart-1);
36+
--color-chart-2: var(--chart-2);
37+
--color-chart-3: var(--chart-3);
38+
--color-chart-4: var(--chart-4);
39+
--color-chart-5: var(--chart-5);
40+
--radius-sm: calc(var(--radius) - 4px);
41+
--radius-md: calc(var(--radius) - 2px);
42+
--radius-lg: var(--radius);
43+
--radius-xl: calc(var(--radius) + 4px);
44+
--color-sidebar: var(--sidebar);
45+
--color-sidebar-foreground: var(--sidebar-foreground);
46+
--color-sidebar-primary: var(--sidebar-primary);
47+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
48+
--color-sidebar-accent: var(--sidebar-accent);
49+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
50+
--color-sidebar-border: var(--sidebar-border);
51+
--color-sidebar-ring: var(--sidebar-ring);
52+
53+
--color-link: var(--link);
1854
}
1955

2056
:root {
@@ -92,51 +128,13 @@
92128
--link: oklch(0.62 0.19 260);
93129
}
94130

95-
@theme inline {
96-
--color-background: var(--background);
97-
--color-foreground: var(--foreground);
98-
--color-card: var(--card);
99-
--color-card-foreground: var(--card-foreground);
100-
--color-popover: var(--popover);
101-
--color-popover-foreground: var(--popover-foreground);
102-
--color-primary: var(--primary);
103-
--color-primary-foreground: var(--primary-foreground);
104-
--color-secondary: var(--secondary);
105-
--color-secondary-foreground: var(--secondary-foreground);
106-
--color-muted: var(--muted);
107-
--color-muted-foreground: var(--muted-foreground);
108-
--color-accent: var(--accent);
109-
--color-accent-foreground: var(--accent-foreground);
110-
--color-destructive: var(--destructive);
111-
--color-destructive-foreground: var(--destructive-foreground);
112-
--color-border: var(--border);
113-
--color-input: var(--input);
114-
--color-ring: var(--ring);
115-
--color-chart-1: var(--chart-1);
116-
--color-chart-2: var(--chart-2);
117-
--color-chart-3: var(--chart-3);
118-
--color-chart-4: var(--chart-4);
119-
--color-chart-5: var(--chart-5);
120-
--radius-sm: calc(var(--radius) - 4px);
121-
--radius-md: calc(var(--radius) - 2px);
122-
--radius-lg: var(--radius);
123-
--radius-xl: calc(var(--radius) + 4px);
124-
--color-sidebar: var(--sidebar);
125-
--color-sidebar-foreground: var(--sidebar-foreground);
126-
--color-sidebar-primary: var(--sidebar-primary);
127-
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
128-
--color-sidebar-accent: var(--sidebar-accent);
129-
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
130-
--color-sidebar-border: var(--sidebar-border);
131-
--color-sidebar-ring: var(--sidebar-ring);
132-
133-
--color-link: var(--link);
134-
}
135-
136131
@layer base {
137132
* {
138133
@apply border-border outline-ring/50;
134+
scrollbar-width: thin;
135+
scrollbar-color: var(--border) transparent;
139136
}
137+
140138
body {
141139
@apply bg-background text-foreground;
142140
}

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -29,44 +29,44 @@
2929
"@radix-ui/react-slot": "^1.2.3",
3030
"class-variance-authority": "^0.7.1",
3131
"clsx": "^2.1.1",
32-
"dayjs": "^1.11.13",
32+
"dayjs": "^1.11.18",
3333
"lodash-es": "^4.17.21",
34-
"lucide-react": "^0.536.0",
35-
"next": "15.5.2",
36-
"next-mdx-remote-client": "^2.1.3",
34+
"lucide-react": "^0.546.0",
35+
"next": "15.5.6",
36+
"next-mdx-remote-client": "^2.1.7",
3737
"next-themes": "^0.4.6",
38-
"react": "^19.1.1",
39-
"react-dom": "^19.1.1",
38+
"react": "^19.2.0",
39+
"react-dom": "^19.2.0",
4040
"reading-time": "^1.5.0",
4141
"rehype-pretty-code": "^0.14.1",
4242
"rehype-slug": "^6.0.0",
4343
"remark-gfm": "^4.0.1",
4444
"remark-math": "^6.0.0",
45-
"shiki": "^3.12.0",
45+
"shiki": "^3.13.0",
4646
"tailwind-merge": "^3.3.1",
47-
"tw-animate-css": "^1.3.7"
47+
"tw-animate-css": "^1.4.0"
4848
},
4949
"devDependencies": {
50-
"@biomejs/biome": "2.1.3",
51-
"@netlify/plugin-nextjs": "^5.12.1",
52-
"@tailwindcss/postcss": "^4.1.12",
53-
"@tailwindcss/typography": "^0.5.16",
50+
"@biomejs/biome": "2.2.6",
51+
"@netlify/plugin-nextjs": "^5.14.0",
52+
"@tailwindcss/postcss": "^4.1.14",
53+
"@tailwindcss/typography": "^0.5.19",
5454
"@types/fs-extra": "^11.0.4",
5555
"@types/lodash-es": "^4.17.12",
56-
"@types/node": "^22.18.0",
57-
"@types/react": "^19.1.11",
58-
"@types/react-dom": "^19.1.8",
59-
"babel-plugin-react-compiler": "19.1.0-rc.2",
60-
"fs-extra": "^11.3.1",
61-
"globals": "^16.3.0",
62-
"lefthook": "^1.12.3",
56+
"@types/node": "^22.18.11",
57+
"@types/react": "^19.2.2",
58+
"@types/react-dom": "^19.2.2",
59+
"babel-plugin-react-compiler": "^1.0.0",
60+
"fs-extra": "^11.3.2",
61+
"globals": "^16.4.0",
62+
"lefthook": "^1.13.6",
6363
"next-sitemap": "^4.2.3",
6464
"npm-run-all2": "^8.0.4",
6565
"onchange": "^7.1.0",
66-
"pagefind": "^1.3.0",
66+
"pagefind": "^1.4.0",
6767
"postcss": "^8.5.6",
68-
"tailwindcss": "^4.1.12",
69-
"typescript": "^5.9.2"
68+
"tailwindcss": "^4.1.14",
69+
"typescript": "^5.9.3"
7070
},
7171
"browserslist": [
7272
"chrome 111",

0 commit comments

Comments
 (0)