Open QuirijnGB opened 3 years ago
This isn't supported at the moment and I'm not sure if adding it would even be possible without a lot of work since in this scenario there's multiple Melos processes running nested, melos run
> test script
> test:report script
- combining filters through each process could prove tricky.
I can see it being useful though, I'll take a look into it
With the testing changes, package filtering is now done through a reusable PackageFilter
class – which is de/serializable.
So we could potentially have melos run
& melos exec
serialize their filters and send it to the executed command with a MELOS_PACKAGE_FILTER
env variable
And have run/exec deserialize this env variable and merge it with the command args.
I currently have a setup similar to this:
Multiple similar commands with different filters combined into one command to make my life easier.
This works great, but now I want to reduce my test/build time by just testing the affected packages using
--since
The
since
option is essentially ignored. Am I missing something or is it currently not possible?