mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 06:12:51 +00:00
34 lines
670 B
JSON
34 lines
670 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": {},
|
|
"build:signed:apk": {},
|
|
},
|
|
}
|