-
Notifications
You must be signed in to change notification settings - Fork 2k
Description
Describe the feature you'd like to request
With lerna, we have lerna list
or lerna ls
. See: https://github.com/lerna/lerna/tree/main/commands/list
This basically lets you list packages and information in a parseable manner and also provides filtering so that you can, for example, do the following:
lerna ls --since origin/master
And it will list all packages that changed since a specific commit.
This is useful for pipelines since sometimes you don't want to build and deploy everything unless it actually changed.
I couldn't find an alternative with the available commands today, so I'm just doing it through a bash script but I suppose it's best to streamline it through turborepo just to make sure everything is coherent.
Describe the solution you'd like
Whatever mimics lerna, for my use-case is fine. The important part is the filtering in my case since otherwise it just lists all available packages.
Describe alternatives you've considered
N/A