-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathturbo.json
88 lines (88 loc) · 1.9 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
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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"**/.env.*local",
"packages/tsconfig/**",
".env",
".env.example"
],
"envMode": "loose",
"globalEnv": [
"NODE_ENV",
"GITHUB_TOKEN",
"NPM_TOKEN",
"GH_TOKEN",
"PARSER_BASE_ENDPOINT",
"PARSER_DATA_PATH",
"LOG_LEVEL",
"CHARACTER_MAP",
"POSITION_MAP",
"MD5_RANDOMIZER",
"LETTER_INDEX",
"SALT_1",
"SALT_2",
"UNLEASH_ENDPOINT",
"UNLEASH_KEY",
"BRAZE_PRIVATE_KEY",
"SENTRY_DSN"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"src/**/*",
"tsconfig.json",
"package.json",
"schema-public.graphql",
"schema-shared.graphql",
"schema-admin.graphql",
"schema.graphql",
"prisma/schema.prisma",
"src/graphql/**/*.graphql",
"codegen.ts",
"*.json"
],
"outputs": [
"dist/**",
"schema-admin-api.graphql",
"schema-client-api.graphql",
"prisma/src/**/*",
"src/generated/**/*",
"src/__generated__/**/*"
],
"cache": true
},
"synth": {
"dependsOn": ["^build"],
"inputs": [
"src/**/*",
"package.json",
"cdktf.json",
".terraform-version"
],
"outputs": ["cdktf.out/**/*"]
},
"lint": {
"inputs": ["src/**/*", "eslint.config.js", "package.json"]
},
"format": {
"inputs": ["src/**/*", "eslint.config.js", "package.json"]
},
"semantic-release": {
"dependsOn": ["^build", "^semantic-release"]
},
"test": {
"inputs": ["src/**/*", "package.json", "jest.config.js", "jest.setup.js"],
"dependsOn": ["^build"],
"cache": true
},
"test-integrations": {
"dependsOn": ["^build"],
"cache": false
},
"dev": {
"cache": false,
"persistent": true
}
}
}