forked from drizzle-team/drizzle-orm
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
44 lines (44 loc) · 1 KB
/
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
43
44
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"//#lint": {
"inputs": ["**/*.ts", "!**/node_modules", "!**/dist"],
"outputMode": "new-only"
},
"test:types": {
"dependsOn": ["^test:types", "^build"],
"inputs": [
"src/**/*.ts",
"tests/**/*.ts",
"tsconfig.json",
"tests/tsconfig.json",
"../tsconfig.json"
],
"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", "test:types"],
"inputs": ["dist/**"],
"outputs": ["package.tgz"],
"outputMode": "new-only"
},
"test": {
"dependsOn": ["build", "test:types"],
"inputs": ["tests/**/*.test.ts"],
"outputMode": "new-only"
}
}
}