Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 536 Bytes

File metadata and controls

22 lines (16 loc) · 536 Bytes

Development

Tooling

  • Bun — package manager and script runner. Use bun install, bun run <script>
  • tsup — bundling the @nextlytics/core package
  • Vitest — testing

Commands

bun run typecheck    # Type check all packages
bun run build        # Build all packages
bun run lint         # Lint all packages
bun run test         # Run tests
bun run format       # Format code with Prettier
bun run format:check # Check formatting

bun run website:dev  # Run website in dev mode

NEVER use pnpm!