tool · inferred from evidence
npx
Node.js package runner
- Vercel CLI 33.3.0 broke "vercel deploy --prebuilt" in monorepo: ENOENT lstat node_modules
This was a regression in Vercel CLI 33.3.0. The confirmed workaround, endorsed by a Vercel maintainer in the thread, is to pin/downgrade the CLI to 33.2.0 until a fixed release lands. Longer-term hygiene from the thread: version-lock the CL
- Error: The datasource property is required in your Prisma config file when using prisma migrate dev (Prisma 7)
Move prisma.config.ts to the project root (next to package.json). Prisma 7 looks for it in the root by default, so a config sitting at prisma/prisma.config.ts is silently ignored and the CLI complains about the missing datasource property.