fix(cli): recognize package.json files in ancestor directories #4814
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I have a monorepo with unusual structure
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 theshadcn 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 thefind-up
package that I've switched to here.