Skip to content

Commit

Permalink
fix: don't include elm-test cache in turbo hashes
Browse files Browse the repository at this point in the history
This lets us hit "full turbo" (where everything is skipped),
which we couldn't before.
  • Loading branch information
lishaduck committed Dec 6, 2024
1 parent 1cd3ee1 commit 5b2cbef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"init-templates/**/*.elm",
"parseElm/**/*.elm",
"review/**/*.elm",
"template/**/*.elm"
"template/**/*.elm",
"!**/elm-stuff/*"
],
"outputs": [
"ast-codec/**/*.elm",
Expand Down Expand Up @@ -130,7 +131,7 @@
"persistent": true
},
"elm-tests": {
"inputs": ["template/", "ast-codec/"]
"inputs": ["template/**/*.elm", "ast-codec/**/*.elm", "!**/elm-stuff/*"]
},
"jest": {
"inputs": ["lib/", "test/"]
Expand Down

0 comments on commit 5b2cbef

Please sign in to comment.