turbo start for trigger, server, web

This commit is contained in:
Nate Kelley 2025-09-23 10:08:38 -06:00
parent 5c55d6e6eb
commit ae54a367a2
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
5 changed files with 34 additions and 2 deletions

View File

@ -4,14 +4,20 @@
"tasks": {
"start": {
"dependsOn": ["@buster/database#start"],
"cache": false,
"persistent": true,
"outputs": []
},
"dev": {
"dependsOn": ["@buster/database#start"],
"cache": false,
"persistent": true,
"outputs": []
},
"dev:fast": {
"dependsOn": ["@buster/database#start"],
"cache": false,
"persistent": true,
"outputs": []
}
}

View File

@ -6,6 +6,11 @@
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"start": {
"dependsOn": ["@buster/database#start", "build"],
"cache": false,
"persistent": true
},
"dev": {
"cache": false,
"persistent": true,

View File

@ -7,6 +7,8 @@
},
"start": {
"dependsOn": ["@buster/database#start"],
"cache": false,
"persistent": true,
"outputs": []
}
}

View File

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

View File

@ -16,6 +16,11 @@
],
"outputs": [".output/**", ".vercel/**"]
},
"start": {
"dependsOn": ["build"],
"cache": false,
"persistent": true
},
"test": {
"inputs": [
"src/**/*",
@ -28,6 +33,8 @@
},
"dev": {
"dependsOn": ["@buster/server-shared#build"],
"cache": false,
"persistent": true,
"inputs": [
"src/**/*",
"!src/**/*.test.{ts,tsx,js,jsx}",
@ -40,6 +47,8 @@
},
"dev:fast": {
"dependsOn": ["@buster/server-shared#build"],
"cache": false,
"persistent": true,
"inputs": [
"src/**/*",
"!src/**/*.test.{ts,tsx,js,jsx}",