From d6a48d9cb9ba9d0fdfe525e5c3c7187cdd3422f8 Mon Sep 17 00:00:00 2001 From: Vyacheslav Matyukhin Date: Fri, 7 Oct 2022 16:23:28 +0400 Subject: [PATCH] disable ignoreCommand in vercel.json for now --- packages/components/vercel.json | 3 +-- packages/website/vercel.json | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/components/vercel.json b/packages/components/vercel.json index 71e5c36c..24616e47 100644 --- a/packages/components/vercel.json +++ b/packages/components/vercel.json @@ -1,6 +1,5 @@ { "buildCommand": "cd ../squiggle-lang && yarn build && cd ../components && yarn build", "outputDirectory": "storybook-static", - "installCommand": "cd ../../ && yarn", - "ignoreCommand": "git diff --quiet $VERCEL_GIT_PREVIOUS_SHA $VERCEL_GIT_COMMIT_SHA . ../squiggle-lang" + "installCommand": "cd ../../ && yarn" } diff --git a/packages/website/vercel.json b/packages/website/vercel.json index 4efc99fd..7f920065 100644 --- a/packages/website/vercel.json +++ b/packages/website/vercel.json @@ -1,6 +1,5 @@ { "buildCommand": "cd ../squiggle-lang && yarn build && cd ../components && yarn build && cd ../website && yarn build", "framework": "docusaurus-2", - "installCommand": "cd ../../ && yarn", - "ignoreCommand": "git diff --quiet $VERCEL_GIT_PREVIOUS_SHA $VERCEL_GIT_COMMIT_SHA ../squiggle-lang ../components ." + "installCommand": "cd ../../ && yarn" }