mirror of
https://github.com/karakeep-app/karakeep.git
synced 2025-12-12 20:35:52 +01:00
68 lines
1.1 KiB
JSON
68 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"globalDependencies": [
|
|
"**/.env"
|
|
],
|
|
"tasks": {
|
|
"topo": {
|
|
"dependsOn": [
|
|
"^topo"
|
|
]
|
|
},
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
".next/**",
|
|
"!.next/cache/**",
|
|
"next-env.d.ts",
|
|
".expo/**",
|
|
".output/**",
|
|
".vercel/output/**",
|
|
"dist/**"
|
|
]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"format": {
|
|
"outputs": [
|
|
"node_modules/.cache/prettier/.prettier-cache"
|
|
],
|
|
"outputLogs": "new-only"
|
|
},
|
|
"format:fix": {
|
|
"outputs": [
|
|
"node_modules/.cache/prettier/.prettier-cache"
|
|
],
|
|
"outputLogs": "new-only"
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^topo"
|
|
]
|
|
},
|
|
"lint:fix": {
|
|
"dependsOn": [
|
|
"^topo"
|
|
]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": [
|
|
"^topo"
|
|
],
|
|
"outputs": [
|
|
"node_modules/.cache/tsbuildinfo.json"
|
|
]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"//#clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|