mirror of https://github.com/buster-so/buster.git
test
This commit is contained in:
parent
afd59e2687
commit
94bb334d2e
|
@ -3,9 +3,9 @@
|
|||
"extends": ["//"],
|
||||
"tasks": {
|
||||
"start": {
|
||||
"dependsOn": ["@buster/database#start"],
|
||||
"cache": true,
|
||||
"persistent": false,
|
||||
"dependsOn": ["@buster-app/supabase#start", "@buster/database#start"],
|
||||
"cache": false,
|
||||
"persistent": true,
|
||||
"outputs": []
|
||||
},
|
||||
"dev": {
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
"outputs": [".output/**", ".vercel/**"]
|
||||
},
|
||||
"start": {
|
||||
"dependsOn": ["build", "@buster-app/supabase#start"],
|
||||
"dependsOn": ["build", "@buster-app/supabase#start", "@buster/database#start"],
|
||||
"cache": true,
|
||||
"persistent": true,
|
||||
"with": ["@buster-app/server#start", "@buster-app/api-legacy#start"]
|
||||
|
|
|
@ -48,6 +48,11 @@
|
|||
"test:coverage": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["coverage/**"]
|
||||
},
|
||||
"start": {
|
||||
"dependsOn": ["^build"],
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
}
|
||||
},
|
||||
"globalEnv": [
|
||||
|
|
Loading…
Reference in New Issue