# @aphrodite/mobile-broadcaster

Aphrodite mobile broadcaster - Mobile streaming app for creators

TypeScript package. Built with tsc/tsup; consumed by other workspaces.

## Scripts

| Command                  | Definition                                    |
| ------------------------ | --------------------------------------------- |
| `pnpm android`           | react-native run-android                      |
| `pnpm ios`               | react-native run-ios                          |
| `pnpm lint`              | eslint src --ext .ts,.tsx                     |
| `pnpm start`             | react-native start                            |
| `pnpm test`              | jest                                          |
| `pnpm clean`             | react-native clean                            |
| `pnpm e2e:build:ios`     | detox build --configuration ios.sim.debug     |
| `pnpm e2e:build:android` | detox build --configuration android.emu.debug |
| `pnpm e2e:test:ios`      | detox test --configuration ios.sim.debug      |
| `pnpm e2e:test:android`  | detox test --configuration android.emu.debug  |

## Layout

- `src/`

## Working on this package

The fastest local loop is via Nx:

```bash
pnpm nx test aphrodite-mobile-broadcaster
pnpm nx lint aphrodite-mobile-broadcaster
pnpm nx build aphrodite-mobile-broadcaster
```

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.
