mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
* added magic link email, updated email template * added magic link ui and db schema * restructured sign in sign up page * updated example custom button * added joy tabs * fixed bugs, added magic link errors, abstracted token creation * added magic link callback * fixed token bugs * added more auth information to user object * added changeset
44 lines
656 B
JSON
44 lines
656 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
".next",
|
|
"dist/**",
|
|
"lib/**",
|
|
"*.js",
|
|
"*.d.ts",
|
|
"*.d.ts.map"
|
|
],
|
|
"outputMode": "new-only"
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"cache": false
|
|
},
|
|
"codegen": {
|
|
"cache": false
|
|
},
|
|
"prisma": {
|
|
"cache": false
|
|
},
|
|
"typecheck": {
|
|
"cache": false
|
|
},
|
|
"email": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|