Skip to content

Commit

Permalink
add "deep clean" command to really nuke all outputs
Browse files Browse the repository at this point in the history
tsc --build --clean does not remove files that no longer exist.
  • Loading branch information
tantaman committed Jun 1, 2022
1 parent 22fc691 commit a8e596d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build-all/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
{ "path": "../packages/react" },
{ "path": "../packages/schema" },
{ "path": "../packages/schema-api" },
{ "path": "../packages/sql-ts" },
{ "path": "../extensions/mutation-codegen" },
{ "path": "../extensions/mutation-grammar" },
{ "path": "../examples/todo-mvc" }
{ "path": "../extensions/mutation-grammar" }
]
}
7 changes: 5 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"dependsOn": [],
"outputs": []
},
"test": {
"dependsOn": []
},
"clean": {
"dependsOn": ["^clean"]
"dependsOn": []
},
"deep-clean": {
"dependsOn": []
}
}
}

0 comments on commit a8e596d

Please sign in to comment.