I am using microsoft rush to build a mono-repo.
I have to build two projects - tools-common
and tools-backend
tools-backend
depends on tools-common
.
rush rebuild
works fine on the local machine.
But on azure devops, it tries to first build tools-backend
and it fails for not finding tools-common
.
My questions are.
- Why rush on azure devops fails to detect the order?
- How can I ensure that it picks up
tools-common
beforetools-backend
?