From 434983450944190e902e78518a04135becb8d0d4 Mon Sep 17 00:00:00 2001 From: Drew Malzahn Date: Mon, 7 Jul 2025 18:29:19 -0400 Subject: [PATCH] Add build recipe to Justfile --- .gitignore | 1 + Justfile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 1ba5555..891961e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules .env config.json +build \ No newline at end of file diff --git a/Justfile b/Justfile index 44157c5..e16e83f 100644 --- a/Justfile +++ b/Justfile @@ -8,6 +8,9 @@ format: lint: bunx --bun @biomejs/biome lint --fix *.ts plugins/ +build: + bun build --target bun --outdir build index.ts + docker-build: docker build --pull -t blitzcrank:latest-dev .