forked from dmno-dev/varlock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
35 lines (35 loc) · 1.01 KB
/
turbo.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"$schema": "https://turbo.build/schema.json",
// super annoying - turbo will swallow env vars unless we include them here
// anything that would affect the build output needs to be included here
// otherwise things that need to be passed through but do not affect caching should be in passThroughEnv
"globalEnv": ["WORKERS_CI_BRANCH", "APP_ENV", "BUILD_TYPE"],
"globalPassThroughEnv": [],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"package.json",
"tsconfig.json",
"tsconfig.*.json",
"tsup.config.ts",
"tsup-*.config.ts",
"peggy.config.cjs",
"astro.config.mjs",
"astro.config.ts",
"scripts/**",
"src/**"
],
"outputs": ["dist/**"]
},
"test:ci": {
"dependsOn": ["^test:ci"],
"inputs": ["package.json", "tsconfig.json", "tsconfig.*.json", "tsup.config.ts", "src/**", "test/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {}
}
}