Skip to content

Commit

Permalink
simplified turbo config
Browse files Browse the repository at this point in the history
  • Loading branch information
perennialAutodidact committed May 26, 2024
1 parent 144c72c commit 85d48da
Showing 1 changed file with 19 additions and 50 deletions.
69 changes: 19 additions & 50 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,21 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
".eslintignore",
".stylelintrc.json",
".stylelintignore"
],
"pipeline": {
"build": {
"cache": true,
"dependsOn": [
"^build"
],
"outputs": []
},
"//$build": {
"cache": true,
"dependsOn": [
"^build"
],
"outputs": [
"apps/frontend/build"
]
},
"ci": {
"cache": true
},
"//$ci": {
"cache": true
},
"lint": {
"cache": true,
"dependsOn": [
"^build"
],
"persistent": true
},
"//$lint": {
"cache": true,
"dependsOn": [
"^build"
],
"persistent": true
},
"start": {
"cache": true
},
"//$start": {
"cache": true
}
}
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
".eslintignore",
".stylelintrc.json",
".stylelintignore"
],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": []
},
"ci": {
"dependsOn": ["^ci"]
},
"lint": {
"dependsOn": ["^build"]
},
"start": {}
}
}

0 comments on commit 85d48da

Please sign in to comment.