I have a question about using turborepo with Next.js. I have two applications in my repository's apps folder, called web and docs. I am deploying them separately application on Vercel, but I am facing an issue where whenever I commit something in the web repository, both applications are rebuilt. I want to modify the build command to only rebuild the application that has changed or its dependencies.
The command I am currently using for building the project on Vercel is:
cd ../.. && npx turbo run build --scope=web --no-deps --include-dependencies
How can I modify this command to only rebuild the relevant application and its dependencies based on the latest commit?