Skip to content

Commit

Permalink
fix(turbo): Avoid Specifying Relative Paths With ./
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWendelborn committed May 6, 2024
1 parent 3ce075d commit 9e788e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/schemas/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"pipeline": {
"download": {
"dependsOn": ["^build"],
"inputs": ["./scripts/**"],
"inputs": ["scripts/**"],
"outputMode": "new-only",
"outputs": ["./data"]
"outputs": ["data"]
},
"start": {
"dependsOn": ["^build", "download"]
Expand Down
4 changes: 2 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"pipeline": {
"build": {
"dependsOn": ["^build"],
"inputs": ["./source/**", "tsconfig.json"],
"inputs": ["source/**", "tsconfig.json"],
"outputMode": "new-only",
"outputs": ["./dist/**"]
"outputs": ["dist/**"]
},
"check": {
"dependsOn": [
Expand Down

0 comments on commit 9e788e3

Please sign in to comment.