Skip to content

Commit 33f68dd

Browse files
committed
don't run build and eslint concurrently
1 parent 54c7f48 commit 33f68dd

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

turbo.json

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@
2020
"tsc-build"
2121
]
2222
},
23-
"hub#build": {
24-
"dependsOn": [
25-
// I don't think hub's eslint and build can run concurrently. Without this we get an error in Github Actions like
26-
// Error: ENOENT: no such file or directory, open '/home/runner/work/Pentive/Pentive/hub/app.config.timestamp_1725915755421.js'
27-
"hub#eslint"
28-
],
29-
"outputs": [
30-
"dist/**",
31-
".vinxi/**"
32-
]
33-
},
3423
"check": {
3524
"dependsOn": [
3625
"tsc-build"
@@ -77,10 +66,15 @@
7766
},
7867
"build": {
7968
"dependsOn": [
80-
"tsc-build"
69+
"tsc-build",
70+
// I don't think app or hub's eslint and build can run concurrently. Without this we get an error in Github Actions like
71+
// Error: ENOENT: no such file or directory, open '/home/runner/work/Pentive/Pentive/hub/app.config.timestamp_1725915755421.js'
72+
// Error: ENOENT: no such file or directory, open '/home/runner/work/Pentive/Pentive/app/vite.config.ts.timestamp-1739835908371-f800981b927ff.mjs'
73+
"eslint"
8174
],
8275
"outputs": [
83-
"dist/**"
76+
"dist/**",
77+
".vinxi/**"
8478
],
8579
"inputs": [
8680
"$TURBO_DEFAULT$",

0 commit comments

Comments
 (0)