Skip to content

Commit

Permalink
simplify turbo.json
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Jul 16, 2022
1 parent fcae481 commit 1872855
Showing 1 changed file with 23 additions and 32 deletions.
55 changes: 23 additions & 32 deletions turbo.json
Expand Up @@ -5,44 +5,35 @@
"build": {
"dependsOn": ["^build"]
},
"next-auth#build": {
"dependsOn": ["^build"],
"outputs": [
"lib/**",
"css/**",
"jwt/**",
"react/**",
"next/**",
"client/**",
"providers/**",
"core/**",
"index.d.ts",
"index.js",
"adapters.d.ts",
"middleware.d.ts",
"middleware.js"
]
"clean": {
"cache": false
},
"test": {
"dependsOn": ["lint", "build"],
"outputs": []
"@next-auth/fauna-adapter#build": {
"dependsOn": ["next-auth#build"]
},
"@next-auth/upstash-redis-adapter#test": {
"@next-auth/prisma-adapter#build": {
"dependsOn": ["next-auth#build"]
},
"@next-auth/typeorm-legacy-adapter#build": {
"dependsOn": ["next-auth#build"]
},
"dev": {
"cache": false,
"dependsOn": [
"lint",
"build",
"$UPSTASH_REDIS_KEY",
"$UPSTASH_REDIS_URL"
"@next-auth/fauna-adapter#build",
"@next-auth/prisma-adapter#build",
"@next-auth/typeorm-legacy-adapter#build"
]
},
"lint": {},
"setup": {},
"dev": {
"cache": false
"lint": {
"outputs": []
},
"next-auth-app#dev": {
"cache": false,
"dependsOn": ["next-auth#setup"]
"test": {
"dependsOn": ["lint"],
"outputs": []
},
"@next-auth/upstash-redis-adapter#test": {
"dependsOn": ["$UPSTASH_REDIS_KEY", "$UPSTASH_REDIS_URL"]
}
}
}

0 comments on commit 1872855

Please sign in to comment.