Skip to content

Commit

Permalink
feat: make turborepo config seprate in a turbo.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
MahdiTa97 committed Feb 2, 2022
1 parent 26ce07f commit 92b8be9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
28 changes: 0 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,5 @@
"husky": "^7.0.4",
"prettier": "^2.5.1",
"turbo": "latest"
},
"turbo": {
"pipeline": {
"build": {
"outputs": [
"dist/**",
".next/**"
],
"dependsOn": [
"^build"
]
},
"test": {
"outputs": [
"coverage/**"
],
"dependsOn": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"clean": {
"cache": false
}
}
}
}
28 changes: 28 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"pipeline": {
"build": {
"outputs": [
"dist/**",
".next/**"
],
"dependsOn": [
"^build"
]
},
"test": {
"outputs": [
"coverage/**"
],
"dependsOn": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"clean": {
"cache": false
}
}
}

0 comments on commit 92b8be9

Please sign in to comment.