You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Describe the feature you'd like to request
With lerna, we have
lerna list
orlerna ls
. See: https://github.com/lerna/lerna/tree/main/commands/listThis 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
The text was updated successfully, but these errors were encountered: