Skip to content

Commit e83fe8f

Browse files
committed
fix: fix turbo.json demo app build output path
1 parent 0b3f946 commit e83fe8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

turbo.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"build": {
66
"dependsOn": ["^build"],
77
"inputs": ["$TURBO_DEFAULT$", ".env*"],
8-
"outputs": ["build/**", "dist/**", "esm/**"]
8+
"outputs": [".next/**", "dist/**", "esm/**"]
99
},
1010
"dev": {
1111
"inputs": ["$TURBO_DEFAULT$", ".env*"],
@@ -20,12 +20,12 @@
2020
"check": {
2121
"inputs": ["$TURBO_DEFAULT$", ".env*"],
2222
"dependsOn": ["^build", "^check"],
23-
"outputs": ["build/**", "dist/**", "esm/**"]
23+
"outputs": [".next/**", "dist/**", "esm/**"]
2424
},
2525
"check:type": {
2626
"inputs": ["$TURBO_DEFAULT$", ".env*"],
2727
"dependsOn": ["^build", "^check:type"],
28-
"outputs": ["build/**", "dist/**", "esm/**"]
28+
"outputs": [".next/**", "dist/**", "esm/**"]
2929
},
3030
"check:lint": {
3131
"inputs": ["$TURBO_DEFAULT$", ".env*"],

0 commit comments

Comments
 (0)