Skip to content

Commit 3f38eb0

Browse files
committed
Add turbo defaults to inputs in turbo config
1 parent 261102b commit 3f38eb0

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)