-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
turbo.json
126 lines (126 loc) · 3.12 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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [
".next",
"dist/**",
"lib/**",
"providers/**",
"generated/**",
"*.js",
"*.d.ts",
"*.d.ts.map",
"src/lib/pages/styles.ts",
"src/providers/oauth-types.ts",
".svelte-kit/**"
],
"outputLogs": "new-only"
},
"clean": {
"cache": false
},
"dev": {
"cache": false
},
"test": {
"outputs": ["coverage/**"],
"inputs": ["src/**/", "test/**/"],
"outputLogs": "new-only"
},
"test:e2e": {
"dependsOn": ["next-auth#build"],
"outputs": [
"blob-report/**",
"playwright-report/**",
"playwright/.cache/**",
"test-results/**"
],
"env": [
"TEST_KEYCLOAK_PASSWORD",
"TEST_KEYCLOAK_USERNAME",
"AUTH_SECRET",
"AUTH_KEYCLOAK_ID",
"AUTH_KEYCLOAK_SECRET",
"AUTH_KEYCLOAK_ISSUER",
"AUTH_TRUST_HOST"
]
},
"@auth/xata-adapter#test": {
"passThroughEnv": ["XATA_API_KEY", "XATA_DATABASE_URL"]
},
"@auth/hasura-adapter#build": {
"dependsOn": ["@auth/core#build"],
"outputs": [
"lib/**",
"*.js",
"*.d.ts",
"*.d.ts.map",
"src/lib/generated/**"
]
},
"docs#dev": {
"dependsOn": [
"next-auth#build",
"@auth/core#build",
"@auth/sveltekit#build",
"@auth/express#build",
"@auth/solid-start#build",
"@auth/qwik#build"
],
"persistent": true,
"cache": false
},
"docs#build": {
"inputs": [
"pages/**",
"utils/**",
"public/**",
"components/**",
"theme.config.tsx",
"typedoc*",
"vercel.json",
"next-sitemap.config.cjs",
"next.config.js"
],
"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",
"@auth/qwik#build",
"next-auth#build",
"^build"
],
"outputs": [
".next/**/*",
"!.next/cache/**",
"docs/reference/**",
"!docs/reference/_meta.js"
]
}
}
}