I am using lerna to manage my mono repo.
I'd like to run a command in parallel towards a set of packages.
I tried the following but can't get it working:
lerna run start --parallel packages1 packages2
lerna run start --parallel --scope packages1 packages2
lerna run start --scope "packages1 packages2" --parallel
It doesn't execute "run start" on my scope but on all the packages I have.
What is the right syntax to define the scope? Couldn't find anything in the documentation for that.
Thanks.
--scope @myrepo/{pkg1,pkg2}
– Nava