From b431e07bc517161e8e51b4eede2db0b71a27952f Mon Sep 17 00:00:00 2001 From: Ekong Jemimah Date: Wed, 29 Jul 2026 22:48:18 +0100 Subject: [PATCH 1/2] feat: add Vercel ignoreCommand to skip frontend builds on unrelated changes --- vercel.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 83e51d85..3d114579 100644 --- a/vercel.json +++ b/vercel.json @@ -3,5 +3,6 @@ "framework": "nextjs", "installCommand": "npm install", "buildCommand": "npm run build --workspace=frontend", - "devCommand": "npm run dev --workspace=frontend" + "devCommand": "npm run dev --workspace=frontend", + "ignoreCommand": "git diff --quiet HEAD^ HEAD -- frontend/" } From 8af5773e7c031f8316ecf810b75fb1e0185ae523 Mon Sep 17 00:00:00 2001 From: Ekong Jemimah Date: Fri, 7 Aug 2026 11:52:24 +0100 Subject: [PATCH 2/2] feat: broaden Vercel ignoreCommand to include root manifests and config --- vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 3d114579..0195239e 100644 --- a/vercel.json +++ b/vercel.json @@ -4,5 +4,5 @@ "installCommand": "npm install", "buildCommand": "npm run build --workspace=frontend", "devCommand": "npm run dev --workspace=frontend", - "ignoreCommand": "git diff --quiet HEAD^ HEAD -- frontend/" + "ignoreCommand": "git diff --quiet HEAD^ HEAD -- frontend/ package.json package-lock.json vercel.json" }