Files
archived-next-auth/turbo.json
2023-03-16 02:53:30 +01:00

79 lines
1.7 KiB
JSON

{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**/*"]
},
"next-auth#build": {
"dependsOn": ["^build"],
"outputs": [
"client/**",
"core/**",
"css/**",
"jwt/**",
"next/**",
"providers/**",
"react/**",
"*.js",
"*.d.ts"
]
},
"@auth/core#build": {
"dependsOn": ["^build"],
"outputs": [
"lib/**/*",
"providers/**/*",
"*.js",
"*.d.ts",
"*.d.ts.map",
"src/lib/pages/styles.ts"
]
},
"@auth/sveltekit#build": {
"dependsOn": ["^build"],
"outputs": ["client.*", "index.*"]
},
"clean": {
"cache": false
},
"dev": {
"cache": false
},
"test": {
"outputs": []
},
"e2e": {
"outputs": ["playwright-report/**"]
},
"@next-auth/upstash-redis-adapter#test": {
"env": ["UPSTASH_REDIS_KEY", "UPSTASH_REDIS_URL"]
},
"docs#dev": {
"dependsOn": ["^build"],
"cache": false
},
"docs#build": {
"dependsOn": [
"@auth/core#build",
"@auth/sveltekit#build",
"@next-auth/dgraph-adapter#build",
"@next-auth/dynamodb-adapter#build",
"@next-auth/fauna-adapter#build",
"@next-auth/firebase-adapter#build",
"@next-auth/mongodb-adapter#build",
"@next-auth/prisma-adapter#build",
"@next-auth/typeorm-legacy-adapter#build",
"next-auth#build"
],
"outputs": [
".docusaurus/**/*",
"build/**/*",
"docs/reference/core/**/*",
"docs/reference/sveltekit/**/*",
"docs/reference/adapter/**"
]
}
}
}