-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
45 lines (45 loc) · 1.2 KB
/
Copy pathturbo.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["tsconfig.json"],
"tasks": {
"fmt": {
"cache": false
},
"check": {
"dependsOn": ["^build"],
"outputs": []
},
"build": {
"dependsOn": ["^build", "check"],
"inputs": ["$TURBO_DEFAULT$"],
"env": [
"PL_DOCKER_REGISTRY_PUSH_TO",
"PL_BUILD_CHANNEL",
"PL_BUILD_VARIANT",
"PL_BUILD_LOCATION",
"PL_BUILD_USE_PUBLISHED",
"PL_DEV_DOCKER_PUSH_URL",
"PL_DEV_DOCKER_PULL_URL",
"PL_DEV_BINARY_UPLOAD_URL",
"PL_RELEASE_DOCKER_PUSH_URL",
"PL_RELEASE_DOCKER_PULL_URL",
"PL_RELEASE_BINARY_UPLOAD_URL",
"PL_REGISTRY_PLATFORMA_OPEN_UPLOAD_URL"
],
"passThroughEnv": ["AWS_*", "PL_AWS_*"],
"outputs": ["./dist/**", "./block-pack/**", "./pkg-*.tgz"]
},
"do-pack": {
"dependsOn": ["build"],
"outputs": ["package.tgz"]
},
"test": {
"dependsOn": ["build", "check"],
"passThroughEnv": ["PL_ADDRESS", "PL_TEST_PASSWORD", "PL_TEST_USER", "PL_TEST_PROXY", "DEBUG"]
},
"mark-stable": {
"passThroughEnv": ["PL_REGISTRY", "AWS_*"],
"cache": false
}
}
}