diff --git a/justfile b/justfile index 09529b2..6f085ae 100644 --- a/justfile +++ b/justfile @@ -13,6 +13,12 @@ start: check: bun run lint && bun run typecheck && bun run test +# Build CLI binary (smallest possible) +build-cli: + mkdir -p dist/bin + bun build --compile --minify --sourcemap=none src/cli.ts --outfile dist/bin/claude-remote + +# Docker build build: docker build -t claude-remote .