forked from nextauthjs/next-auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
turbo.json
110 lines (110 loc) · 2.84 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
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**/*", "*.js", "*.d.ts", "*.d.ts.map"],
"outputMode": "new-only"
},
"next-auth#build": {
"dependsOn": ["^build"],
"outputs": [
"client/**",
"core/**",
"css/**",
"jwt/**",
"next/**",
"providers/**",
"react/**",
"*.js",
"*.d.ts"
],
"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"
},
"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/sveltekit#build",
"@auth/dgraph-adapter#build",
"@auth/dynamodb-adapter#build",
"@auth/fauna-adapter#build",
"@auth/firebase-adapter#build",
"@auth/mikro-orm-adapter#build",
"@auth/mongodb-adapter#build",
"@auth/neo4j-adapter#build",
"@auth/pouchdb-adapter#build",
"@auth/sequelize-adapter#build",
"@auth/supabase-adapter#build",
"@auth/typeorm-adapter#build",
"@auth/upstash-redis-adapter#build",
"@auth/xata-adapter#build",
"^build",
"next-auth#build"
],
"cache": false
},
"docs#build": {
"dependsOn": [
"@auth/core#build",
"@auth/prisma-adapter#build",
"@auth/sveltekit#build",
"@auth/dgraph-adapter#build",
"@auth/dynamodb-adapter#build",
"@auth/fauna-adapter#build",
"@auth/firebase-adapter#build",
"@auth/mikro-orm-adapter#build",
"@auth/mongodb-adapter#build",
"@auth/neo4j-adapter#build",
"@auth/pouchdb-adapter#build",
"@auth/sequelize-adapter#build",
"@auth/supabase-adapter#build",
"@auth/typeorm-adapter#build",
"@auth/upstash-redis-adapter#build",
"@auth/xata-adapter#build",
"^build",
"next-auth#build"
],
"outputs": [
".docusaurus/**/*",
"build/**/*",
"docs/reference/core/**/*",
"docs/reference/sveltekit/**/*",
"docs/reference/adapter/**"
]
}
}
}