1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/turbo/turbo.json

23 lines
448 B
JSON
Raw Normal View History

2022-08-17 00:51:48 +09:00
{
"$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"]
}
}
}