-
Notifications
You must be signed in to change notification settings - Fork 842
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
New command list-dependencies
#682
New command list-dependencies
#682
Conversation
Awesome, +1 from me On Mon, Jul 27 2015, Markus Hauck [email protected] wrote:
|
0807f89
to
10b2428
Compare
I'd prefer the default separator to be I'm also currently seeing the version shown as
|
Well I think two things speak for Having said that I have to strong feelings for any default so I am also fine with
Uhm no, for me it's not the case, I have
The Strange, any idea on what I could do to reproduce? I am using the standard |
Yeah I don't have a strong preference for the separator either (I've just gotten used to Here's my --verbose output. Can you compare to yours?
|
What git revision is that? |
Ah, that was after I merged in upstream master. I reset to 10b2428 and still see the |
Hm even after clean and removing |
libVersionFromInstalled (Library ghcPkgId) = | ||
case ghcPkgIdPackageIdentifier ghcPkgId of | ||
PackageIdentifier _ v -> Just v | ||
libVersionFromInstalled (Executable _) = Nothing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is where the nothing comes from in the end
Seems like it also works on travis: https://travis-ci.org/markus1189/stack/jobs/73232119 |
New command `list-dependencies`
After blowing away my old |
I just ran into the fact that it uses space instead of I wanted to do We might consider changing the behavior of this once we've sorted out the show / query commands (#1614) |
Opened this issue: #1614 |
Implements #638 .
Adds a new command
stack list-dependencies
that will list all transitive dependencies for the local packages.It's not able to show dependencies for the test and benchmark packages, because I could not figure out how to do it, nevertheless I though I should probably pr this as is for the added functionality.
The problem I had with test/benchmark in a nutshell:
If you see what I am doing wrong I'd be happy to change this :)
The nice part is that it reuses the structure generated by
Stack.Dot
so in theory we could also display versions for thestack dot
output.