Mono repo of submodules
PhearZero opened this issue · 3 comments
Here is an example of using submodules in a monorepo.
pnpm is a good mono-runner but yarn works just as well.
What benefits would be have with that?
Aims to solve two problems in general and still allow for mono-repo orchestration (yarn workspace | pnpm -r):
- Allows for single issue buckets per project
- Does not break the
npm install TarikHuber/package-name#hash
for installs.
As far as I can see it it just separates the packages into different git projects. It was like that before. The reason I made it like this is that they are all tightly coupled so for me it makes more sense to have a single issue handler for all of them to avoid duplications. For example an issue that is in base-shell
is only noticed in rmw-shell
. That is the usual case. Maybe in future if there are more packages inside we can make the swith but for now I realy don't see any benefit of it for this usecase.
Thank you for your suggestion and hellp :)