forked from nextauthjs/next-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
135 lines (135 loc) · 3.56 KB
/
turbo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next",
"dist/**",
"lib/**",
"providers/**",
"*.js",
"*.d.ts",
"*.d.ts.map",
"src/lib/pages/styles.ts",
"src/providers/oauth-types.ts",
".svelte-kit/**"
],
"outputMode": "new-only"
},
"clean": {
"cache": false
},
"dev": {
"cache": false
},
"test": {
"outputs": [
"coverage/**"
],
"inputs": [
"src/**/",
"test/**/"
],
"outputMode": "new-only"
},
"test:e2e": {
"outputs": [
"blob-report/**",
"playwright-report/**",
"playwright/.cache/**",
"test-results/**"
]
},
"@auth/upstash-redis-adapter#test": {
"env": [
"UPSTASH_REDIS_KEY",
"UPSTASH_REDIS_URL"
]
},
"@auth/xata-adapter#test": {
"env": [
"XATA_API_KEY",
"XATA_DATABASE_URL"
]
},
"docs#dev": {
"dependsOn": [
"@auth/core#build",
"@auth/azure-tables-adapter#build",
"@auth/d1-adapter#build",
"@auth/dgraph-adapter#build",
"@auth/drizzle-adapter#build",
"@auth/dynamodb-adapter#build",
"@auth/edgedb-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/prisma-adapter#build",
"@auth/sequelize-adapter#build",
"@auth/solid-start#build",
"@auth/supabase-adapter#build",
"@auth/surrealdb-adapter#build",
"@auth/sveltekit#build",
"@auth/express#build",
"@auth/typeorm-adapter#build",
"@auth/unstorage-adapter#build",
"@auth/upstash-redis-adapter#build",
"@auth/xata-adapter#build",
"next-auth#build",
"^build"
],
"cache": false
},
"docs#build": {
"dependsOn": [
"@auth/core#build",
"@auth/azure-tables-adapter#build",
"@auth/d1-adapter#build",
"@auth/dgraph-adapter#build",
"@auth/drizzle-adapter#build",
"@auth/dynamodb-adapter#build",
"@auth/edgedb-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/prisma-adapter#build",
"@auth/sequelize-adapter#build",
"@auth/solid-start#build",
"@auth/supabase-adapter#build",
"@auth/surrealdb-adapter#build",
"@auth/sveltekit#build",
"@auth/typeorm-adapter#build",
"@auth/unstorage-adapter#build",
"@auth/upstash-redis-adapter#build",
"@auth/xata-adapter#build",
"next-auth#build",
"^build"
],
"outputs": [
".docusaurus/**/*",
"build/**/*",
"docs/reference/adapter/**",
"docs/reference/core/**/*",
"docs/reference/nextjs/**/*",
"docs/reference/solidstart/**/*",
"docs/reference/sveltekit/**/*",
"docs/reference/express/**/*"
]
}
}
}