How would you deploy parts of a monorepo in CI?

simonlegg

Simon

Posted on December 22, 2019

How would you deploy parts of a monorepo in CI?

With a monorepo with this kind of structure

.
├── api
│   └── index.js
└── web
    ├── index.html
    ├── main.css
    └── main.js
Enter fullscreen mode Exit fullscreen mode

Assuming you changed the web/index.html and web/main.css files, in CI, how would you deploy only the web directory?

Vice versa if you only changed api/index.js only deploy the api, not the frontend.

💖 💪 🙅 🚩
simonlegg
Simon

Posted on December 22, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related