mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
Next.js 13.4 [is out](https://nextjs.org/blog/next-13-4). For discussing project-related issues, please use https://github.com/nextauthjs/next-auth/discussions/8487 The new version of NextAuth.js is based on `@auth/core`. If you want to test it out, you can do so already, installing `next-auth@experimental`: - **Documentation**: https://authjs.dev/reference/nextjs - **Migration guide**: https://authjs.dev/guides/upgrade-to-v5 BREAKING CHANGE: Follow the [migration guide](https://authjs.dev/guides/upgrade-to-v5)
145 lines
3.6 KiB
JSON
145 lines
3.6 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**/*",
|
|
"lib/**/*",
|
|
"*.js",
|
|
"*.d.ts",
|
|
"*.d.ts.map"
|
|
],
|
|
"outputMode": "new-only"
|
|
},
|
|
"@auth/core#build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"lib/**",
|
|
"providers/**",
|
|
"*.js",
|
|
"*.d.ts",
|
|
"*.d.ts.map",
|
|
"src/lib/pages/styles.ts",
|
|
"src/providers/oauth-types.ts"
|
|
],
|
|
"outputMode": "new-only"
|
|
},
|
|
"@auth/sveltekit#build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
".svelte-kit/**",
|
|
"client.*",
|
|
"index.*"
|
|
],
|
|
"outputMode": "new-only"
|
|
},
|
|
"next-auth#build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"lib/**",
|
|
"providers/**",
|
|
"*.js",
|
|
"*.d.ts",
|
|
"*.d.ts*"
|
|
]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"outputMode": "new-only"
|
|
},
|
|
"e2e": {
|
|
"outputs": [
|
|
"playwright-report/**"
|
|
]
|
|
},
|
|
"@auth/upstash-redis-adapter#test": {
|
|
"env": [
|
|
"UPSTASH_REDIS_KEY",
|
|
"UPSTASH_REDIS_URL"
|
|
]
|
|
},
|
|
"docs#dev": {
|
|
"dependsOn": [
|
|
"@auth/core#build",
|
|
"@auth/prisma-adapter#build",
|
|
"@auth/solid-start#build",
|
|
"@auth/sveltekit#build",
|
|
"@auth/azure-tables-adapter#build",
|
|
"@auth/d1-adapter#build",
|
|
"@auth/edgedb-adapter#build",
|
|
"@auth/dgraph-adapter#build",
|
|
"@auth/drizzle-adapter#build",
|
|
"@auth/dynamodb-adapter#build",
|
|
"@auth/fauna-adapter#build",
|
|
"@auth/firebase-adapter#build",
|
|
"@auth/hasura-adapter#build",
|
|
"@auth/kysely-adapter#build",
|
|
"@auth/mikro-orm-adapter#build",
|
|
"@auth/mongodb-adapter#build",
|
|
"@auth/neo4j-adapter#build",
|
|
"@auth/pg-adapter#build",
|
|
"@auth/pouchdb-adapter#build",
|
|
"@auth/sequelize-adapter#build",
|
|
"@auth/supabase-adapter#build",
|
|
"@auth/surrealdb-adapter#build",
|
|
"@auth/typeorm-adapter#build",
|
|
"@auth/upstash-redis-adapter#build",
|
|
"@auth/xata-adapter#build",
|
|
"^build"
|
|
],
|
|
"cache": false
|
|
},
|
|
"docs#build": {
|
|
"dependsOn": [
|
|
"@auth/core#build",
|
|
"@auth/prisma-adapter#build",
|
|
"@auth/solid-start#build",
|
|
"@auth/sveltekit#build",
|
|
"@auth/azure-tables-adapter#build",
|
|
"@auth/d1-adapter#build",
|
|
"@auth/edgedb-adapter#build",
|
|
"@auth/dgraph-adapter#build",
|
|
"@auth/drizzle-adapter#build",
|
|
"@auth/dynamodb-adapter#build",
|
|
"@auth/fauna-adapter#build",
|
|
"@auth/firebase-adapter#build",
|
|
"@auth/hasura-adapter#build",
|
|
"@auth/kysely-adapter#build",
|
|
"@auth/mikro-orm-adapter#build",
|
|
"@auth/mongodb-adapter#build",
|
|
"@auth/neo4j-adapter#build",
|
|
"@auth/pg-adapter#build",
|
|
"@auth/pouchdb-adapter#build",
|
|
"@auth/sequelize-adapter#build",
|
|
"@auth/supabase-adapter#build",
|
|
"@auth/surrealdb-adapter#build",
|
|
"@auth/typeorm-adapter#build",
|
|
"@auth/upstash-redis-adapter#build",
|
|
"@auth/xata-adapter#build",
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
".docusaurus/**/*",
|
|
"build/**/*",
|
|
"docs/reference/adapter/**",
|
|
"docs/reference/core/**/*",
|
|
"docs/reference/nextjs/**/*",
|
|
"docs/reference/sveltekit/**/*"
|
|
]
|
|
}
|
|
}
|
|
} |