We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In a yarn workspace setup, it would be nice to be able to target multiple, specific packages using extended globbing:
$ ultra -r --filter "@scope/(app|docs)" pwd
It is currently possible to use the --filter option to target a specific package:
--filter
$ ultra -r --filter "@scope/app" pwd
Or all packages under a scope or directory:
$ ultra -r --filter "@scope/*" pwd
Assuming this is a useful feature, maybe it would be as simple as adding config for globrex here?
The text was updated successfully, but these errors were encountered:
feat: ✨ enable extended globbing for --filter (implements #91)
4ce826c
Added in v3.5.0!
The extended syntax is a bit different than in your example. You need to prefix the (app|docs) with a + as in:
(app|docs)
+
$ ultra -r --filter "@scope/+(app|docs)" pwd
Sorry, something went wrong.
folke
No branches or pull requests
In a yarn workspace setup, it would be nice to be able to target multiple, specific packages using extended globbing:
It is currently possible to use the
--filter
option to target a specific package:Or all packages under a scope or directory:
Assuming this is a useful feature, maybe it would be as simple as adding config for globrex here?
The text was updated successfully, but these errors were encountered: