
build
Project-specific build commands. Customize for your project.
by Clouder0|Open Source
Build Skill (Project-Specific)
CUSTOMIZE THIS FILE FOR YOUR PROJECT.
Quick Reference
# TypeScript (bun)
bun run build
bunx tsc
# Python (uv)
uv build
uv run python -m build
Build Commands
TypeScript/JavaScript (Bun)
# Build project
bun run build
# Build with TypeScript compiler
bunx tsc
# Build for production
bun run build --production
Python (UV)
# Build package
uv build
# Build wheel only
uv build --wheel
# Install in development mode
uv pip install -e .
Expected Output
Build should exit with:
- Exit code 0 = Build successful
- Exit code 1 = Build failed
Pre-Build Checklist
Before building:
- ✓ All tests pass
- ✓ No lint errors
- ✓ No type errors
- ✓ Dependencies up to date