mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
78 lines
1.7 KiB
JSON
78 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/firebase-adapter#build",
|
|
"@next-auth/dgraph-adapter#build",
|
|
"@next-auth/prisma-adapter#build",
|
|
"@next-auth/mongodb-adapter#build",
|
|
"@next-auth/typeorm-legacy-adapter#build",
|
|
"@next-auth/dynamodb-adapter#build",
|
|
"next-auth#build"
|
|
],
|
|
"outputs": [
|
|
".docusaurus/**/*",
|
|
"build/**/*",
|
|
"docs/reference/core/**/*",
|
|
"docs/reference/sveltekit/**/*",
|
|
"docs/reference/adapter/**"
|
|
]
|
|
}
|
|
}
|
|
}
|