From fae1798eeb8b3d1c667eb3339e583a76f484cfd2 Mon Sep 17 00:00:00 2001 From: Lucas Smith Date: Fri, 13 Mar 2026 14:06:48 +1100 Subject: [PATCH] fix: add typecheck to build.sh --- apps/remix/.bin/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/remix/.bin/build.sh b/apps/remix/.bin/build.sh index 8a8391ca4..efcadf0f6 100755 --- a/apps/remix/.bin/build.sh +++ b/apps/remix/.bin/build.sh @@ -19,6 +19,9 @@ start_time=$(date +%s) echo "[Build]: Extracting and compiling translations" npm run translate --prefix ../../ +echo "[Build]: Typechecking app" +npm run typecheck + echo "[Build]: Building app" npm run build:app @@ -35,4 +38,4 @@ cp -r ../../packages/lib/translations build/server/hono/packages/lib/translation # Time taken end_time=$(date +%s) -echo "[Build]: Done in $((end_time - start_time)) seconds" \ No newline at end of file +echo "[Build]: Done in $((end_time - start_time)) seconds"