forked from magicuidesign/magicui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
37 lines (37 loc) · 918 Bytes
/
turbo.json
File metadata and controls
37 lines (37 loc) · 918 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
30
31
32
33
34
35
36
37
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"envMode": "strict",
"globalEnv": [
"NODE_ENV",
"NEXT_PUBLIC_POSTHOG_API_KEY",
"BLOG_WEBHOOK_ACCESS_TOKEN",
"GITHUB_TOKEN"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"env": ["NEXT_PUBLIC_APP_URL"],
"outputs": ["dist/**", ".next/**"]
},
"preview": {
"env": ["NEXT_PUBLIC_APP_URL"],
"outputs": [".next/**"]
},
"start": {
"dependsOn": ["^build"]
},
"lint": { "cache": false, "outputs": [] },
"lint:fix": { "cache": false, "outputs": [] },
"format:check": { "cache": false, "outputs": [] },
"format:fix": { "cache": false, "outputs": [] },
"typecheck": {},
"dev": { "cache": false },
"check": { "cache": false },
"test": { "cache": false, "outputs": [] },
"build:registry": {
"cache": false,
"outputs": []
}
}
}