Files
fressh/packages/react-native-uniffi-russh/turbo.jsonc
EthanShoeDev dd0bb7636d turbo tasks
2025-09-19 19:44:20 -04:00

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": {},
},
}