38 lines
468 B
JSON
38 lines
468 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^test",
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"lint": {},
|
|
"test": {
|
|
"dependsOn": [
|
|
"build"
|
|
]
|
|
},
|
|
"test:watch": {
|
|
"persistent": true
|
|
},
|
|
"dev": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"preview": {
|
|
"dependsOn": [
|
|
"^build",
|
|
"build"
|
|
],
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|