This commit is contained in:
Wells Bunker 2025-09-24 10:55:58 -06:00
parent afd59e2687
commit 94bb334d2e
No known key found for this signature in database
GPG Key ID: DB16D6F2679B78FC
3 changed files with 9 additions and 4 deletions

View File

@ -3,9 +3,9 @@
"extends": ["//"], "extends": ["//"],
"tasks": { "tasks": {
"start": { "start": {
"dependsOn": ["@buster/database#start"], "dependsOn": ["@buster-app/supabase#start", "@buster/database#start"],
"cache": true, "cache": false,
"persistent": false, "persistent": true,
"outputs": [] "outputs": []
}, },
"dev": { "dev": {

View File

@ -32,7 +32,7 @@
"outputs": [".output/**", ".vercel/**"] "outputs": [".output/**", ".vercel/**"]
}, },
"start": { "start": {
"dependsOn": ["build", "@buster-app/supabase#start"], "dependsOn": ["build", "@buster-app/supabase#start", "@buster/database#start"],
"cache": true, "cache": true,
"persistent": true, "persistent": true,
"with": ["@buster-app/server#start", "@buster-app/api-legacy#start"] "with": ["@buster-app/server#start", "@buster-app/api-legacy#start"]

View File

@ -48,6 +48,11 @@
"test:coverage": { "test:coverage": {
"dependsOn": ["^build"], "dependsOn": ["^build"],
"outputs": ["coverage/**"] "outputs": ["coverage/**"]
},
"start": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
} }
}, },
"globalEnv": [ "globalEnv": [