From 57039a50b578e63527f0468cd22452dc2b1623a8 Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Sun, 22 Feb 2026 18:54:49 -0600 Subject: [PATCH] chore: organize build outputs into bin directory --- .gitignore | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 97bcc7e..bbf2b93 100644 --- a/.gitignore +++ b/.gitignore @@ -33,5 +33,6 @@ report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json # Finder (MacOS) folder config .DS_Store -# Data +# Outputs & Inputs data +bin \ No newline at end of file diff --git a/package.json b/package.json index f3e5999..d94ab5f 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "typescript": "^5" }, "scripts": { - "build:stdio": "bun build ./stdio.ts --compile --outfile stdio", + "build:stdio": "bun build ./stdio.ts --compile --outfile bin/stdio", "build": "bun build:stdio", "prepare": "bun .husky/install.ts" },