-
Notifications
You must be signed in to change notification settings - Fork 30
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
Added a depsDir option which allows for checking nested dependencies #8
base: main
Are you sure you want to change the base?
Conversation
Thanks for noticing the As for the That said, this will become a problem when Could you say how exactly would you use this feature? Would you write a wrapper module that would perform recursive checks or just do everything manually? (BTW, I was thinking that if we allowed to pass custom I may be mostly unavailable for the next 1.5 weeks so don't get discouraged by my potential silence in the next days. I just don't want to rush it. :) |
Thanks for the quick reply. My use case is probably uncommon but I The way I'm using this is by calling check-dependencies three times: once I wrapped all those calls with Q.all() so I got one promise back to work I need to be able to do this; however, if my pull request doesn't line up Thanks! On Fri, Feb 27, 2015 at 11:11 AM, Michał Gołębiowski <
|
I need the ability to check nested dependencies, e.g., a Bower package's dependencies that are critically important but aren't specified in my project's own
bower.json
file.I added
depsDir
so I could create a configuration that read my dependency'sbower.json
file but checked my project'sbower_components
directory. IfdepsDir
is falsey,packageDir
is used instead (which is what is used now).I also updated README to include a blurb about
depsDir
and another blurb aboutcheckGitUrls
, which I found very useful but was missing from the list of options.