mirror of https://github.com/buster-so/buster.git
29 lines
631 B
JSON
29 lines
631 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"],
|
|
"with": ["@buster-app/supabase#start"]
|
|
},
|
|
"dev:fast": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"dependsOn": ["^build"],
|
|
"with": ["@buster-app/supabase#start"]
|
|
}
|
|
}
|
|
}
|