28 lines
416 B
JSON
28 lines
416 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"compile": {},
|
|
"dev": {},
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build",
|
|
"compile"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"build:test": {
|
|
"dependsOn": [
|
|
"build"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"build",
|
|
"^build",
|
|
"^build:test"
|
|
]
|
|
}
|
|
}
|
|
} |