From 78e340a5198666561501206e34d0aaf83c1e75fd Mon Sep 17 00:00:00 2001 From: Ayub Kokabi Date: Sat, 30 Aug 2025 00:17:23 +0330 Subject: [PATCH] =?UTF-8?q?use=20`shadcn`=20instead=20of=20deprecated=20`s?= =?UTF-8?q?hadcn-ui=E2=80=8D`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CLI package `shadcn-ui` has been deprecated. The recommended package is now `shadcn`. **Changes:** In the README setup instructions, replaced: ```bash pnpm dlx shadcn-ui@latest init ``` with the updated command: ```bash pnpm dlx shadcn@latest init ``` --- examples/react-shadcn/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/react-shadcn/README.md b/examples/react-shadcn/README.md index cf5e69f..dbd016a 100644 --- a/examples/react-shadcn/README.md +++ b/examples/react-shadcn/README.md @@ -163,7 +163,7 @@ This example demonstrates how to integrate React 19+, Tailwind CSS v4+, and shad Run the Shadcn UI initialization command: ```sh - pnpm dlx shadcn-ui@latest init + pnpm dlx shadcn@latest init ``` Answer the prompts in the CLI to configure Shadcn UI according to your preferences (color scheme, etc.). @@ -177,7 +177,7 @@ This example demonstrates how to integrate React 19+, Tailwind CSS v4+, and shad You can now add Shadcn UI components using the CLI: ```sh - pnpm dlx shadcn-ui@latest add button + pnpm dlx shadcn@latest add button ``` This will install the button component and its dependencies. Repeat this command for any other components you wish to use.