Add .run dir

This commit is contained in:
Endeavorance 2024-11-13 15:52:42 -05:00
parent ba2062cd25
commit b0c741ab98
4 changed files with 10 additions and 4 deletions

5
.gitignore vendored
View file

@ -172,7 +172,4 @@ dist
.idea .idea
# Finder (MacOS) folder config # Finder (MacOS) folder config
.DS_Store .DS_Store
# And of course,
.run

3
.run/build Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
#DESCRIPTION# A rundir script
bun build --target bun --compile ./src/cli.ts --outfile rundir

3
.run/format Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
#DESCRIPTION# Format the repo, writing the formatted files to disk
bunx biome format . --write

3
.run/test Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
#DESCRIPTION# A rundir script
echo 'Hello, world!'