All builds work fine locally, this build worked fine 24 days ago on Vercel until I updated depends. None of the deps updated touched resend. I don’t really know any other way to contact support for help.
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}
This is what the turbo.json
looks like and I have a packages/*
as well as an apps/*
. Running pnpm build
locally works for all my projects.