21 lines
355 B
JSON
21 lines
355 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["./src/**"],
|
|
"outputs": ["./dist/**"]
|
|
},
|
|
"pack": {
|
|
"dependsOn": ["^pack"]
|
|
},
|
|
"publish": {
|
|
"dependsOn": ["^publish"]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|