Skip to content

Breaking change, default behavior is `:root`

Compare
Choose a tag to compare
@egonelbre egonelbre released this 24 Mar 12:12
· 49 commits to master since this release
  • removes :root, this is the default behavior when specifying packages
  • removes :noroot, and replaces it with :deps
  • adds :all, to select all the dependencies
  • adds :main, to select main pacakges

When using the expression syntax, the first usage is often to target
all the roots and the dependencies... however most subtractions use
:root.

Usage before:

goda graph X - golang.org/x/tools/...:root - github.com/xyz/...:root

Usage after:

goda graph X:all - golang.org/x/tools/... - github.com/xyz/...