forked from hypercerts-org/hypercerts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
29 lines (29 loc) · 742 Bytes
/
turbo.json
File metadata and controls
29 lines (29 loc) · 742 Bytes
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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local", "**.env"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["build/**", "dist/**", "out/**", ".docusaurus", ".next/**"]
},
"deploy": {
"dependsOn": ["build"],
"outputs": ["build/**", "dist/**", "out/**", ".docusaurus", ".next/**"]
},
"dev": {
"persistent": true
},
"lint": {},
"sentry:sourcemaps": {},
"start": {
"cache": false
},
"test": {},
"@hypercerts-org/frontend#build": {
"dependsOn": ["^build"],
"outputs": ["out/**", ".next/**"],
"env": ["PLASMIC_PROJECT_ID", "PLASMIC_PROJECT_API_TOKEN"],
"cache": false
}
}
}