YesPlayMusic/turbo.json

39 lines
574 B
JSON
Raw Normal View History

2022-05-12 02:45:43 +08:00
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"post-install": {
"cache": false
},
"dev": {
"cache": false
},
"build": {
2023-01-07 14:39:03 +08:00
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
],
2022-10-28 20:29:04 +08:00
"cache": false
2022-05-12 02:45:43 +08:00
},
2022-06-06 01:00:25 +08:00
"pack": {
2023-01-07 14:39:03 +08:00
"outputs": [
"release/**"
],
2022-08-03 23:48:39 +08:00
"cache": false
2022-06-06 01:00:25 +08:00
},
2022-08-22 16:51:23 +08:00
"pack:test": {
2023-01-07 14:39:03 +08:00
"outputs": [
"release/**"
],
2022-08-22 16:51:23 +08:00
"cache": false
},
2022-05-12 02:45:43 +08:00
"test": {
2023-01-07 14:39:03 +08:00
"dependsOn": [
"build"
],
2022-05-12 02:45:43 +08:00
"outputs": []
}
}
}