You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This modification checks against the previous successful deploy commit SHA, which is provided by vercel now. (https://vercel.com/docs/concepts/projects/environment-variables/system-environment-variables)
const fileNameList = childProcess
.execSync(`git diff ${process.env.VERCEL_GIT_PREVIOUS_SHA} HEAD --name-only ./`)
.toString()
.trim()
.split('\n')
// check if any files in the app, or in any shared packages have changed