Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(cli): recognize package.json files in ancestor directories #4814

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

jaredp
Copy link

@jaredp jaredp commented Sep 11, 2024

I have a monorepo with unusual structure

/  <--- repo root
  package.json
  tsconfig.json
  other-stuff/
  server/  <--- nextjs project root
    components.json
    src/pages/
      index.tsx

I'd like to be able to run bunx --bun shadcn@latest add alert-dialog from the //server/ directory.

Without this PR, the package.json in the ancestor directory is not recognized. I get (incorrectly) prompted to create a project, and can't use the shadcn add tool properly.

This change lets the shadcn cli recognize when we're inside a valid node package, not just in the root dir.

I've tested that this works correctly for my project.

As far as I can tell, my directory structure ought to be valid. Other tools accept that we're in a valid package as defined by having some ancestor package.json.

Within this tool, the updateDependencies function is able to work in a subdir, as it uses @antfu/ni to find the package manager, which in turn uses the find-up package that I've switched to here.

Copy link

vercel bot commented Sep 11, 2024

@jaredp is attempting to deploy a commit to the shadcn-pro Team on Vercel.

A member of the Team first needs to authorize it.

@jaredp
Copy link
Author

jaredp commented Sep 12, 2024

@shadcn how do I request review?

@shadcn
Copy link
Collaborator

shadcn commented Sep 15, 2024

@jaredp Yeah this is a valid project structure. So the next app is inside server? Can you give me a more detailed tree of your project setup so that I can test this please?

@shadcn shadcn added postpone: more info or changes requested maintainers asked a question or needs more info area: shadcn labels Sep 15, 2024
@jaredp
Copy link
Author

jaredp commented Nov 19, 2024

@shadcn yep yep, sorry I didn't get a notification about this

.
├── package.json
├── node_modules
├── bun.lockb
├── bunfig.toml
├── server (the nextjs pages-router app)
│   ├── next.config.js
│   ├── components.json
│   ├── postcss.config.cjs
│   ├── tailwind.config.ts
│   ├── drizzle.config.ts
│   ├── next-env.d.ts
│   ├── public
│   ├── src
│   └── vercel.json
├── chrome-extension
│   ├── code for a chrome extension, which imports some things in ../server
│   └── ...
├── tsconfig.json
└── tsconfig.tsbuildinfo

I have package.json/node_modules and tsconfig.json at the root of the monorepo. There are 2 different apps produced:

  • a NextJS app for backend, admin website, and some shared code under server/. This is where the shadcn components live.
  • a Chrome extension under chrome-extension/

@jaredp
Copy link
Author

jaredp commented Jan 19, 2025

@shadcn ping

@shadcn
Copy link
Collaborator

shadcn commented Mar 5, 2025

I'm doing monorepo work. I'll take a look at this again.

@shadcn shadcn added area: roadmap This looks great. We'll add it to the roadmap, review and merge. area: monorepo and removed postpone: more info or changes requested maintainers asked a question or needs more info labels Mar 5, 2025
@shadcn shadcn self-assigned this Mar 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: monorepo area: roadmap This looks great. We'll add it to the roadmap, review and merge. area: shadcn
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants