forked from ComposioHQ/composio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.jsonc
More file actions
101 lines (101 loc) · 3.11 KB
/
Copy pathturbo.jsonc
File metadata and controls
101 lines (101 loc) · 3.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"$schema": "https://turbo.build/schema.json",
// pnpm is installed and enforced by mise (`npm:pnpm` in mise.toml). The root
// `packageManager` field exists for tools like Turbo that need explicit
// workspace package-manager metadata; keep it aligned with mise.toml.
"dangerouslyDisablePackageManagerCheck": true,
// The toolchain (node, bun, pnpm, tsgo host) is pinned by mise, not by
// package.json/lockfile, so toolchain bumps must invalidate every task hash
// or restored CI caches would skip the very runs meant to validate them.
"globalDependencies": ["mise.toml", "mise.lock"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"$TURBO_DEFAULT$",
"tsdown.config.ts",
// for core
"../../../tsdown.config.base.ts",
"../../../tsconfig.base.json",
// for providers
"../../../../tsdown.config.base.ts",
"../../../../tsconfig.base.json"
],
"outputs": ["dist/"]
},
"test": {
"dependsOn": ["^build"]
},
"test:e2e": {
"dependsOn": ["^build"],
"env": ["ANTHROPIC_API_KEY", "COMPOSIO_API_KEY", "COMPOSIO_BASE_URL", "COMPOSIO_USER_API_KEY", "OPENAI_API_KEY"],
"cache": false
},
"test:e2e:node": {
"dependsOn": ["^build"],
"env": ["ANTHROPIC_API_KEY", "COMPOSIO_API_KEY", "COMPOSIO_BASE_URL", "COMPOSIO_USER_API_KEY", "COMPOSIO_E2E_NODE_VERSION", "OPENAI_API_KEY"],
"cache": false
},
"test:e2e:deno": {
"dependsOn": ["^build"],
"env": ["COMPOSIO_API_KEY", "COMPOSIO_BASE_URL", "COMPOSIO_USER_API_KEY", "COMPOSIO_E2E_DENO_VERSION", "OPENAI_API_KEY"],
"cache": false
},
"test:e2e:cli": {
"dependsOn": ["^build"],
"env": ["COMPOSIO_API_KEY", "COMPOSIO_BASE_URL", "COMPOSIO_USER_API_KEY", "COMPOSIO_E2E_CLI_VERSION", "OPENAI_API_KEY"],
"cache": false
},
"test:e2e:cloudflare": {
"dependsOn": ["^build"],
"env": ["COMPOSIO_API_KEY", "COMPOSIO_BASE_URL", "COMPOSIO_USER_API_KEY", "OPENAI_API_KEY"],
"cache": false
},
"install:binary": {
"dependsOn": ["build:binary"],
"cache": false
},
"clean": {
"cache": false
},
"typecheck": {
"dependsOn": ["^build"],
// package tsconfigs extend the root base config, which lives outside the
// package dirs and is therefore not part of $TURBO_DEFAULT$
"inputs": [
"$TURBO_DEFAULT$",
// for core
"../../../tsconfig.base.json",
// for providers
"../../../../tsconfig.base.json"
]
},
"typecheck:tsc": {
"dependsOn": ["^build"],
"cache": false
},
"lint": {
"inputs": ["$TURBO_DEFAULT$", "../../../eslint.config.mjs"]
},
"cf:dry-run": {
"dependsOn": ["^build"]
},
"//#clean": {
"cache": false
},
"record": {
"dependsOn": ["^build"],
"inputs": [
"src/**",
"scripts/record.ts",
"recordings/recordings.yaml"
],
"outputs": [
"recordings/tapes/**",
"recordings/svgs/**",
"recordings/ascii/**"
],
"env": ["COMPOSIO_API_KEY"]
}
}
}