mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-10 22:02:50 +00:00
33 lines
644 B
JSON
33 lines
644 B
JSON
{
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
// Default overrides
|
|
"lint": {
|
|
"dependsOn": ["fmt", "^build"],
|
|
"with": ["typecheck", "//#lint:root", "expo:doctor"],
|
|
},
|
|
"lint:check": {
|
|
"dependsOn": ["^build"],
|
|
"with": ["fmt:check", "typecheck", "//#lint:check:root", "expo:doctor"],
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"with": ["test:e2e"],
|
|
},
|
|
"dev:android": {
|
|
"dependsOn": ["^build", "^build:android"],
|
|
"cache": false,
|
|
"persistent": true,
|
|
},
|
|
"dev:ios": {
|
|
"dependsOn": ["^build", "^build:ios"],
|
|
"cache": false,
|
|
"persistent": true,
|
|
},
|
|
|
|
// Special tasks
|
|
"expo:doctor": {},
|
|
"test:e2e": {},
|
|
},
|
|
}
|