diff --git a/.gitignore b/.gitignore index 3814619..ce007ac 100644 --- a/.gitignore +++ b/.gitignore @@ -172,7 +172,4 @@ dist .idea # Finder (MacOS) folder config -.DS_Store - -# And of course, -.run \ No newline at end of file +.DS_Store \ No newline at end of file diff --git a/.run/build b/.run/build new file mode 100755 index 0000000..4992c57 --- /dev/null +++ b/.run/build @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +#DESCRIPTION# A rundir script +bun build --target bun --compile ./src/cli.ts --outfile rundir diff --git a/.run/format b/.run/format new file mode 100755 index 0000000..fbe8e31 --- /dev/null +++ b/.run/format @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +#DESCRIPTION# Format the repo, writing the formatted files to disk +bunx biome format . --write \ No newline at end of file diff --git a/.run/test b/.run/test new file mode 100755 index 0000000..2c1e99d --- /dev/null +++ b/.run/test @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +#DESCRIPTION# A rundir script +echo 'Hello, world!'