forked from 0xa3k5/web3icons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
43 lines (43 loc) · 1010 Bytes
/
turbo.json
File metadata and controls
43 lines (43 loc) · 1010 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
38
39
40
41
42
43
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"src/**",
"raw-svgs/**",
"tsconfig.json",
"tsup.config.ts",
"package.json"
],
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"cache": true
},
"@web3icons/react#build": {
"dependsOn": ["@web3icons/common#build", "@web3icons/core#build"],
"inputs": [
"src/**",
"../core/src/svgs/**",
"tsconfig.json",
"tsup.config.ts",
"package.json"
],
"outputs": ["dist/**"],
"cache": true
},
"lint": {
"dependsOn": ["^lint"],
"inputs": ["src/**", ".eslintrc*", "tsconfig.json"],
"cache": true
},
"format": {
"inputs": ["**/*.{ts,tsx,js,jsx,md,mdx,json}", ".prettierrc*"],
"cache": true
},
"dev": {
"cache": false,
"persistent": true
}
}
}