Skip to content

Commit

Permalink
Fix-19: Deployement workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjeebLama committed Apr 24, 2023
1 parent b47e2ea commit 4fa302e
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalDependencies": [
"**/.env.*local"
],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"!.next/cache/**"
]
},
"lint": {
"outputs": []
Expand All @@ -13,4 +20,4 @@
"cache": false
}
}
}
}

0 comments on commit 4fa302e

Please sign in to comment.