mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-05-18 05:32:44 +00:00
- Add ARCHITECTURE.md, FAQ.md, LLM.md documentation - Add LICENSE (MIT), CODE_OF_CONDUCT.md, PR template - Add .editorconfig for consistent formatting - Add check.sh script for validation - Fix ESLint errors in hud-config.ts and settings-reader.ts - Various test and component improvements 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
295 B
Bash
Executable File
22 lines
295 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
cd "$ROOT_DIR/tui"
|
|
|
|
echo "==> Installing dependencies"
|
|
bun install
|
|
|
|
echo "==> Lint"
|
|
bun run lint
|
|
|
|
echo "==> Typecheck"
|
|
bun run typecheck
|
|
|
|
echo "==> Test"
|
|
bun test
|
|
|
|
echo "==> Build"
|
|
bun run build
|