# @hestia/mobile

Hestia - Culinary Intelligence Mobile App

Expo / React Native app. Run `pnpm start` to launch the Expo dev client, or use
`eas build` for native binaries.

## Scripts

| Command              | Definition              |
| -------------------- | ----------------------- |
| `pnpm start`         | expo start              |
| `pnpm android`       | expo start --android    |
| `pnpm ios`           | expo start --ios        |
| `pnpm web`           | expo start --web        |
| `pnpm lint`          | eslint . --ext .ts,.tsx |
| `pnpm typecheck`     | tsc --noEmit            |
| `pnpm test`          | jest                    |
| `pnpm test:coverage` | jest --coverage         |

## Layout

- `__tests__/`
- `src/`

## Working on this package

The fastest local loop is via Nx:

```bash
pnpm nx test hestia-mobile
pnpm nx lint hestia-mobile
pnpm nx build hestia-mobile
```

When Nx is unhappy (usually because another worktree has duplicate project
names), bypass it with the underlying tools from this directory:

```bash
npx tsc --noEmit
npx vitest run
```

See the [root README](../../../README.md) for monorepo-wide conventions (catalog
deps, commit format, git workflow). See the
[Contributor Guide](../../../docs/CONTRIBUTING.md) for the full PR workflow.
