Seeking guidance on integrating turborepo with Next.js. In my repository's apps folder, I have two applications named web and docs. Despite deploying them separately on Vercel, an issue arises every time I commit changes to the web application - both applications get rebuilt. My goal is to adjust the build command to rebuild only the specific application that has been modified along with its dependencies.
The current command for building the project on Vercel is as follows:
cd ../.. && npx turbo run build --scope=web --no-deps --include-dependencies
I am looking for suggestions on how to tweak this command in order to trigger a rebuild of only the relevant application and its dependencies based on the latest commit.