Skip to content

Commit

Permalink
refactor(turborepo): Simplify Build Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWendelborn committed Apr 20, 2024
1 parent 54b7e8d commit 895ad3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
7 changes: 1 addition & 6 deletions internals/eslint-config/turbo.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
{
"$schema": "https://turbo.build/schema.json",
"extends": ["//"],
"pipeline": {
"build": {
"inputs": ["./scripts/**", "./source/**", "tsconfig.*"],
"outputs": ["./dist/**"]
}
}
"pipeline": {}
}
4 changes: 0 additions & 4 deletions packages/schemas/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
"$schema": "https://turbo.build/schema.json",
"extends": ["//"],
"pipeline": {
"build": {
"inputs": ["./source/**", "tsconfig.json"],
"outputs": ["./dist/**"]
},
"download": {
"dependsOn": ["^build"],
"inputs": ["./scripts/**"],
Expand Down
4 changes: 3 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputMode": "new-only"
"inputs": ["./source/**", "tsconfig.json"],
"outputMode": "new-only",
"outputs": ["./dist/**"]
},
"check": {
"dependsOn": [
Expand Down

0 comments on commit 895ad3c

Please sign in to comment.