supermemory/turbo.json
2025-01-20 17:50:45 -07:00

32 lines
622 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*", ".dev.vars"],
"outputs": ["build/**", "public/build/**", "server/index.js"],
"cache": true
},
"lint": {
"dependsOn": ["^lint"]
},
"dev": {
"cache": false,
"persistent": true
},
"generate-migration": {
"cache": false
},
"migrate:local": {
"cache": false
},
"deploy": {
"cache": true
},
"tail": {
"cache": false,
"persistent": true
}
}
}