forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
55 lines (55 loc) · 1.34 KB
/
Copy pathturbo.json
File metadata and controls
55 lines (55 loc) · 1.34 KB
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
45
46
47
48
49
50
51
52
53
54
55
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env", "pnpm-lock.yaml"],
"globalPassThroughEnv": ["CI", "NODE_ENV", "GITHUB_ACTIONS"],
"ui": "stream",
"tasks": {
"build:compile": {
"dependsOn": ["^build:compile"],
"env": ["BUILD_MODE"],
"inputs": ["src/**", "tsconfig.json", "tsdown.config.ts", "package.json"],
"outputs": ["dist/**"]
},
"build:examples": {
"dependsOn": ["^build:compile"]
},
"test": {
"dependsOn": ["build:compile"],
"inputs": ["src/**", "tests/**", "**/*.test.ts", "vitest.config.ts"],
"outputs": []
},
"test:single": {
"dependsOn": ["build:compile"],
"cache": false
},
"test:int": {
"dependsOn": ["build:compile"],
"cache": false,
"env": ["XAI_API_KEY"]
},
"test:integration": {
"dependsOn": ["build:compile"],
"cache": false
},
"test:standard:unit": {
"dependsOn": ["^build:compile"],
"inputs": ["src/**", "tests/**"],
"outputs": []
},
"test:standard:int": {
"dependsOn": ["^build:compile"],
"cache": false
},
"test:standard": {
"dependsOn": ["^build:compile"],
"cache": false
},
"test:bench": {
"dependsOn": ["^build:compile"],
"outputs": []
},
"clean": {
"cache": false
}
}
}