mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-22 04:09:16 +08:00
39 lines
574 B
JSON
39 lines
574 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"post-install": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
],
|
|
"cache": false
|
|
},
|
|
"pack": {
|
|
"outputs": [
|
|
"release/**"
|
|
],
|
|
"cache": false
|
|
},
|
|
"pack:test": {
|
|
"outputs": [
|
|
"release/**"
|
|
],
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|