chore: switch package manager to bun and create docs for codebase

This commit is contained in:
Tasnim Kabir Sadik
2026-05-16 17:27:47 +06:00
parent b35df41f08
commit a69118aa2d
16 changed files with 1008 additions and 2360 deletions

View File

@ -10,20 +10,20 @@ generate:
curl -fsSL $(SPEC_URL) -o $(SPEC_PATH)
@echo "Generating TypeScript types..."
mkdir -p src/models
pnpm generate
bun run generate
lint:
pnpm exec biome check .
bunx biome check .
test:
pnpm vitest run --exclude tests/integration
bunx vitest run --exclude tests/integration
test-integration:
pnpm test:integration
bun run test:integration
check:
$(MAKE) lint
$(MAKE) test
build:
pnpm build
bun run build