When using a monorepo in VSTS, sometimes I only update one package in a commit, not everything. In that case, I only want to run the build for that particular piece and nothing else.
I'm using continuous integration so it will build anytime something is committed to master
for instance. Sadly, this build process could take a while and if only one section of the code was modified, I only want to build that project.
Since I'm updating on Git commits, I could be be looking for seeing if changes were made to files in specific directories, but I believe there's gotta be a better way.
NOTE: My project uses Node.js and Webpack and builds using Docker Compose.