mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-10 22:02:50 +00:00
28 lines
636 B
JSON
28 lines
636 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
// Default overrides
|
|
"lint": {
|
|
"dependsOn": ["fmt", "^build"],
|
|
"with": ["typecheck", "//#lint:root", "lint:rust"],
|
|
},
|
|
"lint:check": {
|
|
"dependsOn": ["^build"],
|
|
"with": ["fmt:check", "typecheck", "//#lint:check:root", "lint:rust"],
|
|
},
|
|
"build:android": {
|
|
"outputs": ["dist/**"],
|
|
"dependsOn": ["^build", "build:bob"],
|
|
},
|
|
"build:ios": {
|
|
"outputs": ["dist/**"],
|
|
"dependsOn": ["^build", "build:bob"],
|
|
},
|
|
|
|
// Special tasks
|
|
"lint:rust": {},
|
|
"build:bob": {},
|
|
},
|
|
}
|