Skip to content

Commit d7e36a8

Browse files
committed
Add turbo defaults to inputs in turbo config (#5454)
## Problem solved Short description of the bug fixed or feature added <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on updating the `inputs` in various tasks defined in `turbo.json` to include a new variable `$TURBO_DEFAULT$`, enhancing the configuration for better management of dependencies. ### Detailed summary - Updated `inputs` for `thirdweb#update-version` to include `$TURBO_DEFAULT$`. - Modified `inputs` for `test`, `storybook`, `test:legacy`, `e2e`, and `e2e:legacy` to include `$TURBO_DEFAULT$`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent bcbfb20 commit d7e36a8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

turbo.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,30 +78,30 @@
7878
"dependsOn": ["^build"]
7979
},
8080
"thirdweb#update-version": {
81-
"inputs": ["package.json"],
81+
"inputs": ["$TURBO_DEFAULT$", "package.json"],
8282
"outputs": ["src/version.ts"]
8383
},
8484
"test": {
8585
"outputs": ["coverage/**"],
86-
"inputs": ["src/**", "test/**"],
86+
"inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"],
8787
"dependsOn": ["^build"]
8888
},
8989
"storybook": {
90-
"inputs": ["src/**"]
90+
"inputs": ["$TURBO_DEFAULT$", "src/**"]
9191
},
9292
"test:legacy": {
9393
"outputs": ["coverage/**"],
94-
"inputs": ["src/**", "test/**"],
94+
"inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"],
9595
"dependsOn": ["^build"]
9696
},
9797
"e2e": {
9898
"outputs": [],
99-
"inputs": ["src/**", "fixtures/**"],
99+
"inputs": ["$TURBO_DEFAULT$", "src/**", "fixtures/**"],
100100
"dependsOn": ["^build"]
101101
},
102102
"e2e:legacy": {
103103
"outputs": [],
104-
"inputs": ["src/**", "fixtures/**"],
104+
"inputs": ["$TURBO_DEFAULT$", "src/**", "fixtures/**"],
105105
"dependsOn": ["^build"]
106106
},
107107
"lint": {

0 commit comments

Comments
 (0)