whatchanged icon indicating copy to clipboard operation
whatchanged copied to clipboard

Add monorepo support

Open StarpTech opened this issue 3 years ago • 1 comments

In a monorepo it is very common to have different git tag patterns. Therefore multiple applications in a single repository.

It would be great to filter the changes based on a glob to generate only the changes relevant for a specific application. Ideally, we can pass multiple filter flags and it supports a glob.

whatchanged --filter 'packages/sdk'
whatchanged --filter 'packages/**'
## @wundergraph/[email protected]

### New feature:
....

StarpTech avatar Jun 11 '22 10:06 StarpTech

According to above proposed option --filter packages/xyz. It should be simple to pass this additional option into git for filtering out history i.e. git log -- packages/xyz, see more git-doc.

iiey avatar Dec 15 '22 08:12 iiey