mirror of https://github.com/buster-so/buster.git
29 lines
670 B
JSON
29 lines
670 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["@buster/database#build"],
|
|
"outputs": ["target/release/**"],
|
|
"inputs": ["server/**/*", "libs/**/*", "Cargo.toml", "Cargo.lock"]
|
|
},
|
|
"start": {
|
|
"dependsOn": ["@buster/database#start", "build"],
|
|
"cache": true,
|
|
"persistent": true
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["@buster/database#start"],
|
|
"cache": false,
|
|
"persistent": true,
|
|
"outputs": []
|
|
},
|
|
"dev:fast": {
|
|
"dependsOn": ["@buster/database#start"],
|
|
"cache": false,
|
|
"persistent": true,
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|