logoalt Hacker News

valicordlast Tuesday at 10:14 PM1 replyview on HN

The point is atomic code changes, not atomic deployments. If I want to rename some common library function, it's just a single search and replace operation in a monorepo. How do you do this with multiple repos?


Replies

mjr00last Tuesday at 10:18 PM

> If I want to rename some common library function, it's just a single search and replace operation in a monorepo. How do you do this with multiple repos?

Multiple repos shouldn't depend on a single shared library that needs to be updated in lockstep. If they do, something has gone horribly wrong.

show 2 replies