Kim YoungHoon

Results 36 comments of Kim YoungHoon

The documentation mentions: **[Note: ... only required if you're using the CLI ...](https://ui.shadcn.com/docs/components-json)** In the actual code: ```ts if (!projectInfo || projectInfo?.framework.name === "manual") { errors[ERRORS.UNSUPPORTED_FRAMEWORK] = true frameworkSpinner?.fail() logger.break()...

Didn't you do a “Manual Installation” via “https://ui.shadcn.com/docs/installation/manual”? “shadcn” says that there was a major ‘cli’ update on 2024.08 ”https://ui.shadcn.com/docs/changelog” And it added the code I mentioned in my comment...

> [#4685 (comment)](https://github.com/shadcn-ui/ui/discussions/4685#discussioncomment-10523330) The reason that author(fivestones) got that error is because he didn't have a next.config file This is not a newer version error;; Check the link code below...

> I agree, especially if it's intentionally excluded for React-based setups (which I achieved "manually" 😅), or if it's expected to detect React via @vitejs/plugin-react (for which we see [here](https://github.com/shadcn-ui/ui/blob/078dfe66072c4ca780bbc99d4ad4b13b1f44fe7e/packages/shadcn/src/utils/get-project-info.ts#L97C3-L97C21))....

The problem seems to start with not selecting css var in the initial `shadcn@latest init` options Since css var is undefined, shacn does the conversion internally via the `applyColorMapping` function,...

Could this sequence of events be causing the issue? 1. ``` verbatimModuleSyntax: true ``` - TypeScript configuration that enforces strict module syntax - Requires explicit type imports and value imports...

The root cause of this issue lies in how `configRoutesToRouteManifest` -> `walk()` generates route IDs https://github.com/remix-run/react-router/blob/3d76762c3648bf4c4b6975fa34d7dbae00e03f09/packages/react-router-dev/config/routes.ts#L363 Currently, the logic assigns the ID using `route.id || createRouteId(route.file)` This means that during...

> With asChild it's to help the user override the styles, so if they specify asChild it should not include anything they cannot control (like the chevron down icon) and...

> why this haven't merged yet? I submitted a new PR, but there still seems to be no response from the @shadcn . Perhaps the PR content is incorrect, or...

> Worked with me with this command `bun x shadcn@latest init` Can anyone explain why? `bun x shadcn@latest init` This works, but there is no “bun” related file in the...