Utilities
Repo-level utility commands for the active Bun/TypeScript monorepo.
Start from Bun commands at the repo root.
Common Commands
Build the whole active workspace set
bun run buildRun tests across workspaces
bun run testFormat the supported Bun/TypeScript surfaces
bun run formatCheck the formatter baseline without rewriting files
bun run check:biomeRun the current lint sweep
bun run lintBuild only the portal docs
bun run --filter webstir-portal buildInspect the Bun CLI surface
bun run webstir -- --helpPackage-Local Validation
- Frontend package:
bun run --filter @webstir-io/webstir-frontend build|test - Backend package:
bun run --filter @webstir-io/webstir-backend build|test|smoke - Bun orchestrator:
bun run --filter @webstir-io/webstir test
Notes
- Run commands from the repo root unless a package README says otherwise.
bun run testandbun run check:requiredare aliases for the same required CI mirror.- Use package-local
smokescripts only for focused backend or testing-provider diagnosis; the required gate invokes their already-built variants after one shared framework build.