YesPlayMusic/turbo.json
2022-05-12 02:45:43 +08:00

24 lines
391 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/react",
"pipeline": {
"post-install": {
"cache": false
},
"dev": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"outputs": []
}
}
}