|
|
|
|
|
by nickdandakis
1535 days ago
|
|
Have you used git submodules before? I've only used them once and vowed to never use them again. It's effectively just a pointer to a hash, and ends up being useless for versioning + a really nice footgun for tracking upstream updates. The monorepo vs manyrepo tradeoff boils down to this: Do you want more complicated build + deploy tooling or do you want more complicated dependency management? If the former, pick monorepo. If the latter, pick manyrepo. |
|
Edit: submodules IS a viable solution for truly third-party repos over which you have no control and don't expect to ever edit.