buster/apps/trigger/turbo.json

29 lines
654 B
JSON

{
"extends": ["//"],
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": []
},
"start": {
"cache": false,
"persistent": true,
"dependsOn": ["^build", "@buster-app/supabase#start"],
"with": ["@buster-app/supabase#start"]
},
"dev": {
"cache": false,
"persistent": true,
"dependsOn": ["^build","@buster-app/supabase#start"],
"with": ["@buster/database#dev"]
},
"dev:fast": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"],
"with": ["@buster-app/supabase#start"]
}
}
}