forked from drizzle-team/drizzle-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
42 lines (42 loc) · 810 Bytes
/
turbo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"test:types": {
"dependsOn": ["^test:types", "^build"],
"inputs": [
"src/**/*.ts",
"tests/**/*.ts",
"tsconfig.json",
"tests/tsconfig.json",
"../tsconfig.json"
],
"outputs": [],
"outputMode": "new-only"
},
"build": {
"dependsOn": ["^build"],
"inputs": [
"src/**/*.ts",
"package.json",
"README.md",
"../README.md",
"tsconfig.json",
"../tsconfig.json"
],
"outputs": ["dist/**"],
"outputMode": "new-only"
},
"pack": {
"dependsOn": ["build"],
"inputs": ["dist/**"],
"outputs": ["package.tgz"],
"outputMode": "new-only"
},
"test": {
"dependsOn": ["build"],
"outputs": [],
"inputs": ["tests/**/*.test.ts"],
"outputMode": "new-only"
}
}
}