mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Apply prettier-compatible formatting across the repo to match the incoming oxfmt configuration. Mechanical reformat only — no logic changes. Covers YAML quote normalization, package.json key sorting, Markdown/TOML formatting, and minor TS whitespace tweaks.
27 lines
726 B
YAML
27 lines
726 B
YAML
# NOTE: Maestro requires a config section for every flow file, even when used
|
|
# via `runFlow`. Keep this aligned with the dev build application id.
|
|
appId: sh.paseo
|
|
---
|
|
# Reusable flow to handle Expo dev client screens after launch.
|
|
# Unlike `flows/launch.yaml`, this does not assert any particular app route.
|
|
|
|
# Handle dev launcher - tap localhost server (dev builds only)
|
|
- tapOn:
|
|
text: ".*(localhost|127\\.0\\.0\\.1|10\\.0\\.2\\.2|192\\.168\\.).*"
|
|
optional: true
|
|
|
|
# Dismiss dev menu intro modal
|
|
- runFlow:
|
|
when:
|
|
visible: "Continue"
|
|
commands:
|
|
- tapOn: "Continue"
|
|
|
|
# Dismiss dev menu if it opens
|
|
- runFlow:
|
|
when:
|
|
visible: "Go home"
|
|
commands:
|
|
- tapOn:
|
|
point: "50%,20%"
|