custom squiggle-components outputs; never cache coverage

This commit is contained in:
Vyacheslav Matyukhin 2022-10-08 21:15:37 +04:00
parent fd6c4ae1de
commit de532c72d6
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C
2 changed files with 9 additions and 2 deletions

View File

@ -43,4 +43,4 @@ jobs:
- name: Install dependencies
run: yarn
- name: Coverage
run: npx turbo run coverage --no-cache # coverage builds for squiggle-lang can generate slower code that should never be cached
run: npx turbo run coverage

View File

@ -9,7 +9,12 @@
"vscode-squiggle#build": {
"dependsOn": ["^build", "@quri/squiggle-components#bundle"]
},
"@quri/squiggle-components#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "storybook-static/**"]
},
"@quri/squiggle-lang#build": {
"dependsOn": ["^build"],
"outputs": [
"__tests__/**/*.bs.js",
"benchmark/**/*.bs.js",
@ -25,6 +30,8 @@
"bundle": {
"dependsOn": ["^build", "build"]
},
"coverage": {}
"coverage": {
"cache": false
}
}
}