roles-bot/turbo.json

26 lines
419 B
JSON
Raw Normal View History

2023-04-03 16:33:23 +02:00
{
2023-04-09 15:53:10 +02:00
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist"]
},
"dev": {
"outputs": ["dist"]
},
"dev:tunnel": {
"outputs": ["dist"]
},
"preview": {
"outputs": ["dist"]
},
"deploy": {
2023-04-09 17:08:08 +02:00
"dependsOn": ["build"]
2023-04-09 15:53:10 +02:00
},
"start": {},
"test": {
"dependsOn": ["^build"]
}
}
2023-04-03 16:33:23 +02:00
}