Files
archived-next-auth/turbo.json
2022-12-16 15:57:55 +01:00

46 lines
846 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"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
},
"dev": {
"cache": false
},
"lint": {
"outputs": []
},
"test": {
"dependsOn": ["lint"],
"outputs": []
},
"format": {
"outputs": []
},
"@next-auth/upstash-redis-adapter#test": {
"dependsOn": ["$UPSTASH_REDIS_KEY", "$UPSTASH_REDIS_URL"]
}
}
}