mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-09 10:58:06 +01:00
24 lines
370 B
JSON
24 lines
370 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist"]
|
|
},
|
|
"dev": {
|
|
"outputs": ["dist"]
|
|
},
|
|
"dev:tunnel": {
|
|
"outputs": ["dist"]
|
|
},
|
|
"preview": {
|
|
"outputs": ["dist"]
|
|
},
|
|
"deploy": {
|
|
"dependsOn": ["build", "test", "lint"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
}
|
|
}
|
|
}
|