1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/turbo/turbo.json
2022-08-17 00:51:48 +09:00

22 lines
448 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"test": {
"dependsOn": ["//#test:npm-run-all"]
},
"//#test:p1": {},
"//#test:p2": {},
"//#test:s1": {
"dependsOn": ["//#test:p1", "//#test:p2"]
},
"//#test:s2": {
"dependsOn": ["//#test:s1"]
},
"//#test:s3": {
"dependsOn": ["//#test:s2"]
},
"//#test:npm-run-all": {
"dependsOn": ["//#test:s3"]
}
}
}