mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
* adding openapi generation * added optional responses * added path params * added request body * added full openapi file * fixed crud bug * fixed small bugs * added generate-docs script * added parameter example * create docs from handler * improved parse openapi interface * removed unused * added endpoint metadata * added current user handler * migrated old docs to fern * 🌿 api set-up (#75) Co-authored-by: Catherine Deskur <chdeskur@gmail.com> * added sdk docs * updated tabs * improved styling * added header links * added tags to docs * added focus to docs * added focus to team docs * improved docs wording * added discord link * updated generate-keys docs * fixed merge error * added yaml package * added github actions * fixed doc gen bug * added docs lint check * added doc watch changes * updated github actions * fixed action file * updated publish docs workflow * added overview page * fixed action bug --------- Co-authored-by: fern <126544928+fern-bot@users.noreply.github.com> Co-authored-by: Catherine Deskur <chdeskur@gmail.com>
50 lines
757 B
JSON
50 lines
757 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
|
|
},
|
|
"test": {
|
|
"cache": false
|
|
},
|
|
"generate-docs": {
|
|
"cache": false
|
|
},
|
|
"generate-keys": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|