Skip to content

Commit c9f3d91

Browse files
committed
chore: add turborepo config
1 parent 5983cf6 commit c9f3d91

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

turbo.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://turbo.build/schema.json",
3+
"pipeline": {
4+
"build": {
5+
"dependsOn": [
6+
"^build"
7+
]
8+
},
9+
"test": {
10+
"dependsOn": [
11+
"^build"
12+
]
13+
},
14+
"deploy": {
15+
"dependsOn": [
16+
"build",
17+
"test",
18+
"^deploy"
19+
]
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)