vercel.json configs

This commit is contained in:
Vyacheslav Matyukhin 2022-10-07 01:38:38 +04:00
parent 1474630af8
commit af885ef58f
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
{
"buildCommand": "cd ../squiggle-lang && yarn build && cd ../components && yarn build",
"outputDirectory": "storybook-static",
"installCommand": "cd ../../ && yarn",
"ignoreCommand": "node -e 'process.exitCode = process.env.VERCEL_GIT_COMMIT_REF.includes(\"dependabot\") ? 0 : 1' && git diff --quiet $VERCEL_GIT_PREVIOUS_SHA $VERCEL_GIT_COMMIT_SHA . ../squiggle-lang"
}

View File

@ -0,0 +1,6 @@
{
"buildCommand": "cd ../squiggle-lang && yarn build && cd ../components && yarn build && cd ../website && yarn build",
"framework": "docusaurus-2",
"installCommand": "cd ../../ && yarn",
"ignoreCommand": "node -e 'process.exitCode = process.env.VERCEL_GIT_COMMIT_REF.includes(\"dependabot\") ? 0 : 1' && git diff --quiet $VERCEL_GIT_PREVIOUS_SHA $VERCEL_GIT_COMMIT_SHA ../squiggle-lang ../components ."
}