chore: organize build outputs into bin directory

This commit is contained in:
2026-02-22 18:54:49 -06:00
parent f347c8ca6f
commit 57039a50b5
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@@ -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

View File

@@ -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"
},