mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-17 03:56:18 +00:00
32 lines
622 B
JSON
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
|
|
}
|
|
}
|
|
}
|