mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
47 lines
926 B
JSON
47 lines
926 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"globalPassThroughEnv": ["NODE_OPTIONS"],
|
|
"globalEnv": ["CI"],
|
|
"tasks": {
|
|
"fmt": {},
|
|
"fmt:check": {},
|
|
"eslint:check": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"lint:fix": {
|
|
"dependsOn": ["^build", "fmt"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"lint:check": {
|
|
"with": ["fmt:check"],
|
|
"dependsOn": ["eslint:check", "typecheck", "//#lint:check:root"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["lint:fix", "typecheck", "//#lint:root"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"//#lint:check": {
|
|
"dependsOn": ["//#lint:check:root", "//#jscpd:check"]
|
|
},
|
|
"//#lint": {
|
|
"dependsOn": ["//#lint:root", "//#jscpd:check"]
|
|
},
|
|
"//#lint:root": {},
|
|
"//#lint:check:root": {},
|
|
"//#jscpd:check": {}
|
|
}
|
|
}
|