Skip to content

Commit adc611f

Browse files
authored
Merge pull request #17 from pheralb/next
Update dependencies
2 parents 5b38172 + 00211f6 commit adc611f

File tree

4 files changed

+239
-156
lines changed

4 files changed

+239
-156
lines changed

apps/website/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-blocks/website",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -20,15 +20,15 @@
2020
"class-variance-authority": "0.7.1",
2121
"clsx": "2.1.1",
2222
"cmdk": "1.1.1",
23-
"lucide-react": "0.575.0",
24-
"motion": "12.34.3",
23+
"lucide-react": "0.577.0",
24+
"motion": "12.35.2",
2525
"next": "16.1.6",
2626
"next-themes": "0.4.6",
2727
"react": "19.2.4",
2828
"react-dom": "19.2.4",
2929
"react-hotkeys-hook": "5.2.4",
30-
"shadcn": "3.8.5",
31-
"swr": "2.4.0",
30+
"shadcn": "4.0.5",
31+
"swr": "2.4.1",
3232
"tailwind-merge": "3.5.0",
3333
"zod": "4.3.6",
3434
"zustand": "5.0.11"
@@ -37,27 +37,27 @@
3737
"@code-blocks/eslint": "workspace:*",
3838
"@code-blocks/registry": "workspace:*",
3939
"@content-collections/cli": "0.1.9",
40-
"@content-collections/core": "0.14.1",
40+
"@content-collections/core": "0.14.2",
4141
"@content-collections/mdx": "0.2.2",
4242
"@content-collections/next": "0.2.11",
43-
"@shikijs/langs": "4.0.0",
44-
"@shikijs/rehype": "4.0.0",
45-
"@shikijs/themes": "4.0.0",
46-
"@shikijs/transformers": "4.0.0",
43+
"@shikijs/langs": "4.0.2",
44+
"@shikijs/rehype": "4.0.2",
45+
"@shikijs/themes": "4.0.2",
46+
"@shikijs/transformers": "4.0.2",
4747
"@tailwindcss/postcss": "4.2.1",
4848
"@tailwindcss/typography": "0.5.19",
4949
"@types/mdx": "2.0.13",
50-
"@types/node": "22.19.13",
50+
"@types/node": "22.19.15",
5151
"@types/react": "19.2.14",
5252
"@types/react-dom": "19.2.3",
5353
"chalk": "5.6.2",
54-
"eslint": "9.39.3",
54+
"eslint": "9.39.4",
5555
"github-slugger": "2.0.0",
5656
"react-docgen-typescript": "2.4.0",
5757
"rehype-autolink-headings": "7.1.0",
5858
"rehype-slug": "6.0.0",
5959
"remark-gfm": "4.0.1",
60-
"shiki": "4.0.0",
60+
"shiki": "4.0.2",
6161
"sugar-high": "0.9.5",
6262
"tailwindcss": "4.2.1",
6363
"tsx": "4.21.0",

apps/website/src/components/get-started-link.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,14 @@ const GetStartedLink = () => {
1515
href="/docs/getting-started/prerequisites"
1616
className={buttonVariants({
1717
size: "default",
18-
className: "group w-full md:w-auto",
18+
className: "w-full md:w-auto",
1919
})}
2020
>
2121
<span>Get Started</span>
2222
<span className="rounded-sm bg-neutral-600/60 px-0.5 font-mono text-neutral-300 dark:bg-neutral-700/60">
2323
c
2424
</span>
25-
<ChevronRightIcon
26-
size={16}
27-
className="transition-transform group-hover:translate-x-0.5"
28-
/>
25+
<ChevronRightIcon size={16} />
2926
</Link>
3027
);
3128
};

apps/website/src/components/ui/button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { cn } from "@/utils/cn";
44
import { cva, type VariantProps } from "class-variance-authority";
55

66
const buttonVariants = cva(
7-
"inline-flex items-center cursor-pointer justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-neutral-300 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 dark:focus-visible:ring-neutral-700",
7+
"inline-flex items-center cursor-pointer justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-neutral-300 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 dark:focus-visible:ring-neutral-700 will-change-transform active:scale-[0.97] transition-[color,background-color,border-color,fill,box-shadow,scale] duration-150 ease-out touch-manipulation",
88
{
99
variants: {
1010
variant: {

0 commit comments

Comments
 (0)