mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
22 lines
448 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|